.gitignore for Visual Studio Projects and Solutions

Posted by Martin Aatmaa on Stack Overflow See other posts from Stack Overflow or by Martin Aatmaa
Published on 2010-01-27T01:24:14Z Indexed on 2010/03/23 1:21 UTC
Read the original article Hit count: 621

Filed under:
|

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

Community Wiki:

#OS junk files
Thumbs.db
*.DS_Store

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

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

#Project files
[Bb]uild/

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about git