Created
November 9, 2010 07:59
-
-
Save jwang/668834 to your computer and use it in GitHub Desktop.
My .gitignore file for iOS, Android and Ruby on Rails development on OSX
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
# OSX Noise | |
.DS_Store | |
# TextMate | |
*.tmproj | |
tmtags | |
# XCode (and ancestors) per-user config (very noisy, and not relevant) | |
*.mode1 | |
*.mode1v3 | |
*.mode2v3 | |
*.perspective | |
*.perspectivev3 | |
*.pbxuser | |
# build products | |
build/ | |
*.[oa] | |
# Other source repository archive directories (protects when importing) | |
.hg | |
.svn | |
# Vim | |
*.swp | |
# Thinking Sphinx | |
config/*.sphinx.conf | |
db/sphinx | |
# Rails 3 | |
.bundle | |
db/*.sqlite3 | |
log/*.log | |
tmp/**/* | |
public/system/* | |
# RubyMine | |
.idea/workspace.xml | |
.idea/tasks.xml | |
# Google Android | |
.metadata | |
tmp/** | |
*.tmp | |
*.bak | |
tmp/**/* | |
*.swp | |
*~.nib | |
*~ | |
*.apk | |
bin | |
gen | |
local.properties | |
*.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment