Created
September 13, 2010 09:55
-
-
Save linuslundahl/577073 to your computer and use it in GitHub Desktop.
Make git always ignore .DS_Store
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
$ git config --global core.excludesfile ~/.gitignore | |
$ echo .DS_Store >> ~/.gitignore |
Thank you!
Thanks 👍
Git started ignoring .DS_Store in all subdirs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!