Mac系统下系统总是会自动自动生成一个.DS_Store
的文件,.DS_Store
是用来存储这个文件夹的显示属性的:比如文件图标的摆放位置。删除以后的副作用就是这些信息的失去。(当然,这点副作用其实不是太大),最主要的是在本地新建仓库推送的时候总是忘记建立.gitignore
文件,麻烦!
git
项目中的.DS_Store
文件# 1、删除项目中的.DS_Store文件
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
# 2、将.DS_Store加入到.gitignore
echo .DS_Store >> ./gitignore
# 3、推送到仓库
git add .
git commit -m 'Delete .DS_Store'
git push
.DS_Store
find . -name '*.DS_Store' -type f -delete
.DS_Store
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
.DS_Store
defaults delete com.apple.desktopservices DSDontWriteNetworkStores
本文作者:ZGGSONG
本文链接:https://www.zggsong.cn/archives/DS_Store.html
版权声明:本站所有未注明转载的文章均为原创,并采用CC BY-NV-SA 4.0授权协议,转载请注明来源