Git: Ignoring files for .NET development
Posted by Kash Farooq on July 10, 2011
Here is the .gitignore file I use for .NET/C# development. Add this file to the root of your Git repository so you don’t end up adding ReSharper files, bin folders, etc to your commits:
obj bin _ReSharper.* *.csproj.user *.resharper.user *.resharper *.suo *.cache ~$*
Advertisements
Sorry, the comment form is closed at this time.