Answers for "echo .ds_store > .gitignore"

1

ds_store gitignore

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

git add .gitignore
git commit -m '.DS_Store banished!'
Posted by: Guest on July-21-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language