Last active
September 18, 2017 07:10
-
-
Save haipeng/4e3eaea59d8123529954fa6034cbaa01 to your computer and use it in GitHub Desktop.
git global ignore
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
# Node | |
npm-debug.log | |
node_modules | |
# Mac | |
.DS_Store | |
# Windows | |
Thumbs.db | |
# WebStorm | |
.idea/ | |
# vi | |
*~ | |
# General | |
log/ | |
*.log | |
# etc... |
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
git config --global core.excludesfile '~/.gitignore' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment