Appearance
2023-07-06 15:46:55
移除无意间被添加进 git 仓库的 .DS_Store 文件
sh
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch --cached
2023-07-06 15:46:55
移除无意间被添加进 git 仓库的 .DS_Store 文件
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch --cached