Last active
August 29, 2015 14:13
-
-
Save algonzalez/d4c9a7d9387369a77bed to your computer and use it in GitHub Desktop.
Contents of my .gitignore file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-- Files | |
*.bak.* | |
*.bak | |
*.dll | |
*.exe | |
*.ldf | |
*.log | |
*.mdf | |
*.msi | |
*.sqlite | |
*.private.config | |
#-- OS Files | |
*.DS_Store | |
[Tt]humbs.db | |
#-- Directories | |
App_Data/* | |
[Bb]in/ | |
[Oo]bj/ | |
_ReSharper.*/ | |
tmp/ | |
.svn/ | |
.git/ | |
!/lib | |
# mstest test results | |
TestResults | |
#-- Microsoft Visual Studio | |
*.pdb | |
*.sln.cache | |
*.suo | |
*.user | |
*.vspscc | |
*.vssscc | |
#-- Microsoft Visual Studio Add-ins | |
*.resharper | |
*.typemock | |
# used by the SPDisposeCheck add-in | |
solution.disposechecksettings | |
# used by the Productivity Power Tools add-in | |
*.sln.docstates | |
#-- MonoDevelop specific | |
*.pidb | |
*.userprefs | |
*.usertasks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment