Question

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

Was it helpful?

Solution

I have these lines in my .gitignore:

_ReSharper.*
*.ReSharper.user
*.resharper.user

OTHER TIPS

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.

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top