Last active
December 15, 2015 00:19
-
-
Save robertcedwards/5172182 to your computer and use it in GitHub Desktop.
Permanently ignore .DS_Store files in your Git repos
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_global && echo .DS_Store >> ~/.gitignore_global |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks http://knorrium.info/2012/03/18/ignoring-ds_store-files-on-osx/