Skip to content

Instantly share code, notes, and snippets.

@FleXoft
Created June 27, 2018 18:41
Embed
What would you like to do?
Remove .DS_Store files from git repo
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
echo .DS_Store >> .gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment