markdown Git - 在MacOS.md上删除.DS_Store

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Git - 在MacOS.md上删除.DS_Store相关的知识,希望对你有一定的参考价值。

1. Remove all .DS_Store on current git directory


```bash

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

```

2. After done 1 step, add .DS_Store in .gitignore 

以上是关于markdown Git - 在MacOS.md上删除.DS_Store的主要内容,如果未能解决你的问题,请参考以下文章

markdown macos-info.md

使用Doxygen生成markdown用户文档时如何获取空白页面

markdown 在git rebase / git merge之后撤消

markdown 在`git push`之后在本地和远程撤消`git commit`

markdown 在Git中重命名远程分支

markdown 在本地和远程删除Git分支