Tagged Questions

17
votes
3answers
7k views

ignoring folders in mercurial

Caveat: I try all the posibilities listed here: http://stackoverflow.com/questions/254002/how-can-i-ignore-everything-under-a-folder-in-mercurial. None works as I hope. I want to ignore every thing ...
15
votes
2answers
3k views

hgignore: help ignoring all files but certain ones

I need an .hgdontignore file :-) to include certain files and exclude everything else in a directory. Basically I want to include only the .jar files in a particular directory and nothing else. How ...
10
votes
2answers
3k views

.hgignore syntax for ignoring only files, not directories?

I have a problem which I can't seem to understand. I'm using TortoiseHg (version 0.7.5) on Windows but on Linux I have the same problem. Here it is: My .hgignore file: syntax: regexp ^[^\\/]+$ ...
7
votes
3answers
800 views

Ignore files in Mercurial using Glob syntax

I'm using Mercurial and I have a following structure: files test demo.jpg video.flv video.doc sport demo2.jpg picture.jpg text.txt demo3.jpg ...
5
votes
3answers
289 views

Mercurial .hgignore regular expresion

Using Mercurial, I need to ignore all files and directories except directories "tests" and "languages" and files in those directories. That all must be done with regex and .hgignoere Files: ...
5
votes
1answer
375 views

Mercurial .hgignore Negative Lookahead

Using Mercurial, I need to ignore all files except for those in a certain directory called "keepers". On the face of things, this seemed easy using Regex and Negative Lookahead; however, although I ...
4
votes
1answer
209 views

How to hgignore all subfolders but not the file in a folder?

I am looking to use nuget without committing the packages. I want to ignore in mercurial all packages subfolder that are located in the /packages/ folder, but I do not want to exclude the ...
3
votes
3answers
619 views

Regex negative look-behind in hgignore file

I'm looking for a way to modify my .hgignore file to ignore all "Properties/AssemblyInfo.cs" files except those in either the "Test/" or the "Tests/" subfolders. I tried using the negative ...
2
votes
2answers
62 views

Mercurial gives “invalid pattern” error for simple GLOB syntax

I have the following in my .hgignore file: syntax: glob obj/* bin/* *.suo *.user *.ncb If I comment out the *. filters, the filtering works fine filtering out the files in the bin and obj folder, ...
2
votes
4answers
250 views

mercurial ignore files

How do I ignore everything in a bin folder which is inside different projects? easy way - ^projects/a/bin/*$ ^projects/b/bin/*$ I wanted to do something like - ^projects/*/bin/*$ But the above ...
1
vote
1answer
40 views

Honing the .hgignore file using a negative lookahead

I've looked at a handful of the other Hg hgignore file questions, but I haven't been able to get my regex to work. Imagine these files: Projects/search.intrasearch/newUI/override/xslt/foo.xsl ...
1
vote
3answers
253 views

Regex for all files except .hg_keep

I use empty .hg_keep files to keep some (otherwise empty) folders in Mercurial. The problem is that I can't find a working regex which excludes everything but the .hg_keep files. lets say we have ...
0
votes
2answers
50 views

Hg Regexp Syntax Not Working as Expected

Here's my file/folder structure: Code/.hg Code/.hgignore Code/CASH/readme.txt Code/CASH/bin/FTI/abc.dll I'm trying to create a regular expression in my .hgignore file that will ignore everything ...
0
votes
2answers
112 views

Why does my regexp not get the files I want in Mercurial's .hgignore?

I've been chasing around regular expressions for my .hgignore file, and found several very useful answers on SO (like this) and come up with a regexp I think should work to exclude all files and ...
0
votes
2answers
113 views

How to make up a regexp that matches all files in the directory except for files with .jar extension?

Let's assume that we have the next directory structure: /parentdir/ /childdir/ child_file1.txt child_file2.jar file1.txt file2.txt so, we get next full file names: ...
0
votes
2answers
2k views

About Mercurial, .hgignore file and glob syntax

Is it possible, while using glob syntax for an .hgignore file, to recursively ignore certain files and folders, except one? Assuming that you have: a/ a/b a/c a/d Something like: syntax globe: a ...