Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which files should I include in .gitignore when using Git in conjunction with Visual Studio Solutions (.sln) and Projects?

Community Wiki:

#OS junk files
[Tt]humbs.db
*.DS_Store

#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
*.opensdf
*.unsuccessfulbuild
ipch/
obj/
[Bb]in
[Dd]ebug*/
[Rr]elease*/
Ankh.NoLoad

#MonoDevelop
*.pidb
*.userprefs

#Tooling
_ReSharper*/
*.resharper
[Tt]est[Rr]esult*
*.sass-cache

#Project files
[Bb]uild/

#Subversion files
.svn

# Office Temp Files
~$*

#NuGet
packages/

#ncrunch
*ncrunch*
*crunch*.local.xml

# visual studio database projects
*.dbmdl

#Test files
*.testsettings
share|improve this question
Related question: stackoverflow.com/questions/72298/… – Greg Hewgill Jan 27 '10 at 1:35
There's also a topic on this for Hg: stackoverflow.com/questions/34784/… . Don't know if that config is directly transferable to git though. – Martin S Jan 27 '10 at 2:03
I made this into a community wiki, and have consolidated all existing answers into the post. Please contribute as you see fit! – Martin S Jan 29 '10 at 1:00
1  
I would be careful ignoring .exe and .pdb's, you may inadvertently ignore tooling that you store with your source (nant, nunit gui, etc...). – James Gregory May 21 '10 at 13:32
2  
@murki - looks like this is the answer: coderjournal.com/2011/12/… – Ronnie Overby Jan 25 '12 at 19:19
show 8 more comments

10 Answers

I use the following .gitignore for C# projects. Additional patterns are added as and when they are needed.

[Oo]bj
[Bb]in
*.user
*.suo
*.[Cc]ache
*.bak
*.ncb
*.log 
*.DS_Store
[Tt]humbs.db 
_ReSharper.*
*.resharper
Ankh.NoLoad
share|improve this answer
Disagree with *.resharper. Files matching *.ReSharper.user should be ignored, but that's catered for by the *.user rule above. – Drew Noakes Jul 9 '12 at 19:25

There is an official repository of gitignore files at https://github.com/github/gitignore.

The .gitignore for visual studio can be found here: https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

share|improve this answer

While you should keep your NuGet packages.config file, you should exclude the packages folder:

#NuGet
packages/

I typically don't store binaries, or anything generated from my source, in source control. There are differing opinions on this however. If it makes things easier for your build system, do it! I would however, argue that you are not versioning these dependencies, so they will just take up space in your repository. Storing the binaries in a central location, then relying on the packages.config file to indicate which version is needed is a better solution, in my opinion.

share|improve this answer
3  
anyone care to elaborate on why you'd want to exclude the packages folder? doesn't it make sense to include the packages for the build server to have the dependencies? – Joel Martinez Jan 3 '12 at 2:51
2  
@JoelMartinez I've updated my answer to address your comment. – sgriffinusa Jan 4 '12 at 15:17
thanks, that's a good update – Joel Martinez Jan 4 '12 at 19:56
10  
It's worth noting that the NuGet team implemented the 'package restore' feature for exactly this problem. There's a document on the NuGet site which explains the feature and describes how to use it in Visual Studio. – ajk Mar 6 '12 at 19:54
2  
If you ignore packages and are using nuget package restore, it's helpful to allow nuget.exe. When someone downloads, this tells helps VS tell that the feature has been enabled for the solution: !NuGet.exe <- do not ignore this file. – danludwig Jun 25 '12 at 18:45
show 1 more comment

Added InstallShield ignores for the build deployment. InstallShield is the new direction Microsoft is headed over Visual Studio Installer, so we've started using it on all new projects. This added line removes the SingleImage installation files. Other InstallShield types may include DVD distribution among others. You may want to add those directory names or just [Ee]xpress/ to prevent any InstallShield LE deployment files from getting into the repo.

Here is our .gitignore for VS2010 C# projects using Install Shield LE with SingleImage deployments for the installer:

#OS junk files
[Tt]humbs.db
*.DS_Store

#Visual Studio files
*.[Oo]bj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
ipch/
obj/
[Bb]in
[Dd]ebug*/
[Rr]elease*/
Ankh.NoLoad

#InstallShield
[Ss]ingle[Ii]mage/
[Dd][Vv][Dd]-5/
[Ii]nterm/

#Tooling
_ReSharper*/
*.resharper
[Tt]est[Rr]esult*

#Project files
[Bb]uild/

#Subversion files
.svn

# Office Temp Files
~$*
share|improve this answer
I quote James Gregory's comment here: "I would be careful ignoring .exe and .pdb's, you may inadvertently ignore tooling that you store with your source (nant, nunit gui, etc...). – James Gregory May 21 '10 at 13:32" – Jim Raden Jun 6 '12 at 21:36
Disagree with *.resharper. Files matching *.ReSharper.user should be ignored, but that's catered for by the *.user rule above. – Drew Noakes Jul 9 '12 at 19:25

I prefer to exclude things on an as-needed basis. You don't want to shotgun exclude everything with the string "bin" or "obj" in the name. At least be sure to follow those with a slash.

Here's what I start with on a VS2010 project:

bin/
obj/
*.suo
*.user

And only because I use ReSharper, also this:

_ReSharper*
share|improve this answer

Here's an extract from a .gitignore on a recent project I was working on. I've extracted the ones that I believe are related to Visual Studio, including the compilation outputs; it's a cross platform project, so there are various other ignore rules for files produced by other build systems, and I can't guarantee that I separated them out exactly.

*.dll
*.exe
*.exp
*.ilk
*.lib
*.ncb
*.log
*.pdb
*.vcproj.*.user
[Dd]ebug
[Rr]elease

Perhaps this question should be Community Wiki, so we can all edit together one master list with comments about which files should be ignored for which types of project?

share|improve this answer
See James Gregory's comment on another answer: "I would be careful ignoring .exe and .pdb's, you may inadvertently ignore tooling that you store with your source (nant, nunit gui, etc...). – James Gregory May 21 '10 at 13:32" – Jim Raden Jun 6 '12 at 21:38
@JimRaden In general, it's best to avoid checking in binary tools into Git. Best practices are to only check in your source to Git; if you need binary tools, include a script for installing them or a submodule with just those tools. – Brian Campbell Jul 5 '12 at 21:35

Credit to Jens Lehmann for this one - if you keep source directories separate to your compiler project files and build output, you could simplify your .gitignore by negating it:

path/to/build/directory/*
!*.sln
!*.vcproj

You don't say what language(s) you're using, but the above should work for C++ projects.

share|improve this answer
I didn't know that there was a negation flag in .gitignore. Helpful tip! – Jim Raden Jun 6 '12 at 21:38

Here is what I use in my .NET Projects for my .gitignore file.

[Oo]bj/
[Bb]in/
*.suo
*.user
/TestResults
*.vspscc
*.vssscc

This is pretty much an all MS approach, that uses the built in Visual Studio tester, and a project that may have some TFS bindings in there too.

share|improve this answer

If you are using a dbproj in your solution you will want to add the following:

#Visual Studio DB Project
*.dbmdl
[Ss]ql/

Source: http://blogs.msdn.com/b/bahill/archive/2009/07/31/come-visit-revisit-the-beer-house-continuous-integration.aspx

share|improve this answer

Late to the party here, but I also find that I use the following. Some may only be useful for hiding sensitive files when pushing to a public remote.

#Ignore email files delivered to specified pickup directory
*.eml

#Allow NuGet.exe (do not ignore)
!NuGet.exe

#Ignore WebDeploy publish profiles
*.Publish.xml

#Ignore Azure build csdef & Pubxml files
ServiceDefinition.build.csdef
*.azurePubxml

#Allow ReSharper .DotSettings (for non-namespace-provider properties)
!*.csproj.DotSettings

#Ignore private folder
/Private/
share|improve this answer
Latest version does not need to explicitly unignore nuget.exe – tofutim Nov 20 '12 at 18:51
@tofutim, the latest version of what? git itself? – danludwig Nov 20 '12 at 21:55
1  
the community wiki above – tofutim Nov 20 '12 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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