I'm sure this is a dumb question, but what is the syntax to ignore my _Resharper.*
directories with Bazaar? I've tried ignoring: \_Resharper*.*
./\_Resharper*.*
, **/\_Resharper*.*
, plus variations of those on the wildcards. No matter what I do, it continues to pick up the directory.
views:
139answers:
2
+1
A:
You are probably bitten by the wildcard expansion occuring in the shell.
Type bzr ignore --help
and look at the Examples section:
- Ignore the top level Makefile:
bzr ignore ./Makefile
- Ignore class files in all directories:
bzr ignore "*.class"
- Ignore .o files under the lib directory:
bzr ignore "lib/**/*.o"
- Ignore .o files under the lib directory:
bzr ignore "RE:lib/.*\.o"
- Ignore everything but the "debian" toplevel directory:
bzr ignore "RE:(?!debian/).*"
ddaa
2009-11-08 01:21:15
A:
You don't need to use backslash there. Just
_Resharper.*
or
_Resharper
will work.
bialix
2009-11-08 03:11:31
Actually added that to escape the '_'char.. when I first posted it wasn't showing up. Added it, worked (backslash not visible)... though now both chars show up.
Scott
2009-11-08 12:45:36
try using just quotes or double quotes.
bialix
2009-11-08 13:55:40