Skip to content

Instantly share code, notes, and snippets.

@nicck
Created December 16, 2014 08:19
Show Gist options
  • Save nicck/d4698ebcb3783d31e6e5 to your computer and use it in GitHub Desktop.
Save nicck/d4698ebcb3783d31e6e5 to your computer and use it in GitHub Desktop.
remove .DS_Store from git repo
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment