I hate seeing nearly every directory in my repository list each file twice, once with a dot in front of it and once without. I tried adding .* to my .hgignore file, but it has no effect. Is this the wrong syntax, and more importantly, is it a bad idea to try this in the first place? Thanks.
|
| ||||
|
show 2 more comments
feedback
|
|
You've got almost the right answer in the comments from gavinb, but the match was a little to broad. However, key concept about ignoring after the face was provided by RogerPage, again in a comment (what's with everyone preferring comments to answers?). Let's look at these nine files:
If in the default regex mode for hgignore you do:
You ignore eight of those nine files:
which is more broad than you said you wanted. It's ignoring anything with a dot anywhere in it. To ignore all files and directores (not what you said, but what you seem to want) beginning with a dot you use this regexp pattern:
which says that the thing before the literal dot has to be the start of the line (
That caught only files or directories that start with a dot. However, the other key concept that came up, was that .hgignore has no effect after a file has been added. It will prevent adding by wild card, but you can always override .hgignore with an explicit That's actually really handy because you can ignore broadly (ex: In the end it sounds like what you want in your .hgignore file is:
and that you need to remove the ones you've already added:
| |||
|
feedback
|
\..*but it is very suspicious that you describe having all files, with a dot and without. You wouldn't ordinarily have dot files in a repo. What files are you tracking? (hg manifest) – gavinb Mar 7 '10 at 4:52hg addremove, and did a commit, and they are all still in my repository. – user123003 Mar 7 '10 at 4:59syntax: reabove the directive). But.*is correct glob syntax. If the files are already committed, you'll have to remove them individually (or withhg rm .*), and addremove won't do this for you. – Roger Pate Mar 7 '10 at 5:06sudo hg rm .*doesn't work. I getabort: .. not under rootwhich doesn't make sense to me. All of the hidden files in question are actually._files that the OSX Finder creates for some reason. I tried running their built-indot_cleanutility, but I getundouble . failed. Very frustrating. – user123003 Mar 7 '10 at 5:18sudo hg rm ._*but it tells menot removing ._*: file is untracked, yet when I gethg manifestI see plenty of._files! – user123003 Mar 7 '10 at 5:21