-
-
Save delor34n/3471ac858cc9ce22bed7faf9af80b34f to your computer and use it in GitHub Desktop.
How Can I Remove .DS_Store Files From A Git Repository? Open terminal and run the following command from your git project root. http://stackoverflow.com/questions/107701/how-can-i-remove-ds-store-files-from-a-git-repository
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
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment