hg local ignore

2020-02-17 04:59发布

I could have sworn there was a way to keep a local ignore file in an hg repo, i.e. a file similar in function to .hgignore, but not checked into the repo. This could be used to ignore changes to an IDE project file if different IDEs are being used, for example. I'm having trouble finding how it's done. Does anyone recall the details?

3条回答
贼婆χ
2楼-- · 2020-02-17 05:40

This is what I was looking for.

Add the following to the repo's .hg/hgrc:

[ui]
ignore = /path/to/repo/.hg/hgignore

and create a new file .hg/hgignore beside it. This new file will be untracked, but work the same as the versioned .hgignore file for this specific working copy. (The /path/to/repo bit is unfortunate but necessary to make it work when invoking 'hg' from within a subdir of the repo.)

查看更多
我想做一个坏孩纸
3楼-- · 2020-02-17 05:46

In version 3.5, setting the ignore property under the ui section changes the global ignore file. To add additional files to be ignored, follow the advice of Jeroen Dierckx and set the ignore.local property to get the same effect as adding to .git/info/exclude in a git repository.

[ui]
ignore = .hgignore
ignore.local = .hg/hgignore
查看更多
家丑人穷心不美
4楼-- · 2020-02-17 05:47

Just make an .hgignore file and add .hgignore to the .hgignore file itself.

查看更多
登录 后发表回答