Author: Betty Godier | Twitter: @BettyGodier | Email: [email protected]
#Useful solution to Fix Git Problems with .DS_Store
1️⃣ Delete the existing files from the repository:
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
2️⃣ Add row