views:

285

answers:

3

What is TortoiseGit's equivalent to TortoiseSVN's "ignore patterns" ? Or otherwise, how do I make it ignore Resharper?

+3  A: 

I think TortoiseGit uses Git-style Gitignore files to mark files/directories as ignored.

You may also want to consider using Git Extensions instead of TortoiseGit.

RJFalconer
+1  A: 

Just add .gitignore file to the directory that contains the files you want ignored. Inside that file list the file patterns you want excluded(one oer line). TortoiseGIT will respect those.

Igor Zevaka
+4  A: 

I have these lines in my .gitignore:

_ReSharper.*
*.ReSharper.user
*.resharper.user
Frank Schwieterman