Last active
December 21, 2015 12:38
-
-
Save tfogo/6306654 to your computer and use it in GitHub Desktop.
My global gitignore file. Based on files in Github's gitignore repo (https://github.com/github/gitignore)
It ignores common files from eclipse and emacs. Unlike Github's file, it does not ignore .project, .classpath, or .settings/.
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
# FOR ECLIPSE | |
*.pydevproject | |
.metadata | |
bin/** | |
tmp/** | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# FOR EMACS | |
*~ | |
\#*\# | |
/.emacs.desktop | |
/.emacs.desktop.lock | |
.elc | |
auto-save-list | |
tramp | |
.\#* | |
# Org-mode | |
.org-id-locations | |
*_archive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment