Mac删除Git目录下的.DS_Store文件

996Worker
996Worker
发布于 2021-08-15 / 262 阅读
0
0

Mac删除Git目录下的.DS_Store文件

起因

傻苹果。
删除文件后,会有.DS_Store文件冒出来。
放到项目目录里非常不规范,还会泄漏重要数据。

经过

在项目Git目录下,终端模拟器:

# 删除项目中的所有.DS_Store。这会跳过不在项目中的 .DS_Store
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
# 将 .DS_Store 加入到 .gitignore
echo .DS_Store >> ~/.gitignore
# 更新项目
git add --all
git commit -m '.DS_Store removed'

结果

Done.


评论