Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mercurial/.hgignore - How do I ignore everything but the contents of a folder?

I have a NetBeans project and the Mercurial repository is in the project root. I would like it to ignore everything except the contents of the "src" and "test" folders, and .hgignore itself.

I'm not familiar with regular expressions and can't come up with one that will do that.

The ones I tried:

(?!src/.*)

(?!test/.*)

(?!^.hgignore)

(?!src/.|test/.|.hgignore)

These seem to ignore everything, I can't figure out why.

Any advice would be great.

like image 491
Saiki Avatar asked Mar 31 '10 20:03

Saiki


2 Answers

This seems to work:

syntax: regexp

^(?!src|test|\.hgignore)

This is basically your last attempt, but:

  • It's rooted at the beginning of the string with ^, and
  • It doesn't require a trailing slash for the directory names.

The second point is important since, as the manual says:

For example, say we have an untracked file, file.c, at a/b/file.c inside our repository. Mercurial will ignore file.c if any pattern in .hgignore matches a/b/file.c, a/b or a.

So your pattern must not match src.

like image 142
legoscia Avatar answered Sep 20 '22 12:09

legoscia


^(?!src\b|test\b|\.hgignore$).*$

should work. It matches any string that does not start with the word src or test, or consists entirely of .hgignore.

It uses a word boundary anchor \b to ensure that files like testtube.txt or srcontrol.txt aren't accidentally matched. However, it will "misfire" on files like src.txt where there is a word boundary other than before the slash.

like image 31
Tim Pietzcker Avatar answered Sep 22 '22 12:09

Tim Pietzcker