XRay-Fabric icon indicating copy to clipboard operation
XRay-Fabric copied to clipboard

Remove .DS_store files

Open wolfieboy09 opened this issue 1 month ago • 0 comments

DS_store files is a MacOS feature. You can tell git to stop tracking them by adding .DS_Store is .gitignore Then, after adding to .gitignore

git rm --cached -r . --ignore-unmatch "*.DS_Store"
git commit -m "remove .ds_store files"

You can check if the file is ignored by running git status --ignored

wolfieboy09 avatar Dec 27 '24 18:12 wolfieboy09