I am looking for an expression for the .hgignore file, to ignore all files beneath a specified folder.
eg: I would like to ignore all files and folders beneath bin
Actually any advice on how the expressions are formed would be great
|
I am looking for an expression for the .hgignore file, to ignore all files beneath a specified folder. eg: I would like to ignore all files and folders beneath bin Actually any advice on how the expressions are formed would be great |
||||
|
|
|
Alternately:
|
|||||||||
|
|
I did some experiments and I found that the regex syntax on Windows applies to the path starting with the current repository, with backslashes transformed to slashes. So if your repository is in E:\Dev for example, So:
I hope this will help, I found the HGIGNORE(5) page a bit succinct. |
||||
|
|
|
Both of those will also filter out a directory called
For |
|||||
|
|
Nevermind, I got it
expressions follow standard perl regular expression syntax. |
|||
|
|
to ignore .class files
|
|||
|
|