vote up 0 vote down star

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.

flag
Update: embarrassing thing. I never noticed the directory name was ReSharper.. So changed the S to upper case and things are working as expected. – Scott Nov 8 at 12:43

2 Answers

vote up 0 vote down

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/).*"
link|flag
vote up 0 vote down

You don't need to use backslash there. Just

_Resharper.*

or

_Resharper

will work.

link|flag
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 Nov 8 at 12:45
try using just quotes or double quotes. – bialix Nov 8 at 13:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.