Tac-Tics
Tac-Tics

Reputation: 1925

Excluding project configuration files from commits in Mercurial

I have a project that requires some configuration files. I want to keep the default configuration filse in the repository. However, I want don't want to have to specify the -X flag for every commit I do. Is there a standard way to mark a set of revisioned files as permanently excluded from commits?

Upvotes: 6

Views: 320

Answers (2)

Ry4an Brase
Ry4an Brase

Reputation: 78340

You could use the (much maligned) defaults section in your .hgrc:

  [defaults]
  commit = -X thefileyouwanttoexclude

If you can retrain your fingers the preferred way to do that is with an alias instead:

 [alias]
  cmt = commit -X thefileyouwanttoexclude

then you start using hg cmt instead of commit.

Upvotes: 3

Norman Ramsey
Norman Ramsey

Reputation: 202585

Interesting question, I hope you get a better answer. Faced similar problems, I have done the following:

  • Rename the configuration files, so that for example, instead of noweb.cfg I have noweb.cfg.default. This file changes seldom and is kept under revision control.

  • The actual configuration file, noweb.cfg, may change frequently but is put in the .hgignore file so it is never committed.

  • At need I have a special Makefile target that rebuilds *.cfg from *.cfg.default.

This solution is not ideal because changes in the .cfg files are lost when the .cfg.default changes. In principle you could tackle this issue with diff3 or some more sophisticated merge tool, but I have never been energetic enough to go there.

Upvotes: 4

Related Questions