Last active
September 5, 2015 14:24
-
-
Save Superbil/504935 to your computer and use it in GitHub Desktop.
git ignore file
This file contains hidden or 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
# Mac OS X Finder and whatnot | |
.DS_Store | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# no useful files | |
log/*.log | |
tmp/**/* | |
public/cache/**/* | |
doc/api | |
doc/app | |
# Xcode | |
build/* | |
*.o | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
*.xcworkspace | |
!default.xcworkspace | |
xcuserdata | |
profile | |
*.moved-aside | |
DerivedData | |
.idea/ | |
*.hmap | |
# Other source repository archive directories (protects when importing) | |
.hg | |
.svn | |
CVS | |
# automatic backup files | |
*~.nib | |
*.swp | |
*~ | |
*(Autosaved).rtfd/ | |
Backup[ ]of[ ]*.pages/ | |
Backup[ ]of[ ]*.key/ | |
Backup[ ]of[ ]*.numbers/ | |
# Sparkle distribution Private Key (Don't check me in!) | |
dsa_priv.pem | |
## android use | |
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# generated files | |
bin/ | |
gen/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Eclipse project files | |
.classpath | |
.project | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Intellij project files | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
# ctags | |
TAGS | |
# Cocoapods | |
Pods/ | |
podfile.lock |
This file contains hidden or 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
#Ignore files build by Visual Studio | |
*.obj | |
*.exe | |
*.pdb | |
*.user | |
*.aps | |
*.pch | |
*.vspscc | |
*_i.c | |
*_p.c | |
*.ncb | |
*.suo | |
*.tlb | |
*.tlh | |
*.bak | |
*.cache | |
*.ilk | |
*.log | |
[Bb]in | |
[Dd]ebug*/ | |
*.lib | |
*.sbr | |
obj/ | |
[Rr]elease*/ | |
_ReSharper*/ | |
[Tt]est[Rr]esult* |
This file contains hidden or 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
#ignore thumbnails created by windows | |
Thumbs.db |
Author
Superbil
commented
Sep 17, 2010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment