Answers for "git ignore ds store all"

3

git ignore all ds_store

echo ".DS_Store" >> ~/.gitignore_global
echo "._.DS_Store" >> ~/.gitignore_global
echo "**/.DS_Store" >> ~/.gitignore_global
echo "**/._.DS_Store" >> ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
Posted by: Guest on February-22-2021
0

gitignore ds_store in all folders

**/.DS_Store
Posted by: Guest on December-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language