My global .gitignore

Adding my .gitignore file so I can look it up in the future.


# Eclipse
.classpath
.project
.settings/

# Intellij
.idea/
*.iml
*.iws

# OS
.DS_Store
*.sw?

# Maven
log/
target/

And then configure Git to use it globally by:


git config --global core.excludesfile ~/.gitignore

Voila!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.