Skip to content

Instantly share code, notes, and snippets.

@mindmergedesign
Created May 17, 2013 18:13
Show Gist options
  • Save mindmergedesign/5600893 to your computer and use it in GitHub Desktop.
Save mindmergedesign/5600893 to your computer and use it in GitHub Desktop.
Find and remove .DS_Store files from repository
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