XRay-Fabric
XRay-Fabric copied to clipboard
Remove .DS_store files
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