I started a project and added it to hg, but I want to take *.cs file under version control only, so,i have to add bin, obj, sln, suo,_resharper folder etc to ignore pattern, ,how to let hg only monitor certain kind of file like white list? How to do that in Subversion?
|
1
|
|||||
|
|
|
Just add the extensions to your
and so on. It's not a lot of work, and it documents to the rest of the world exactly what kind of files you consider unimportant for revision control. You can even setup a global ignore file, please see the Trying to turn the
will be ignored if any of
is matched by a rule in your |
||||
|
|
|
Add a file named
Subversion doesn't let you use regex to ignore files, only a subset of glob syntax to match file/directory names. I had no idea how to make ignore files not ending in .cs so I searched the web and this webpage says:
Use it with caution :) Edit: Martin Geisler is right and I was mistaken, the regexp syntax is wrong. I apologize. The correct concept is there but not the metacharacters... :( |
||||
|
