从git签出中删除.DSu存储文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从git签出中删除.DSu存储文件相关的知识,希望对你有一定的参考价值。
This command will not delete the .DS_Store files from the file system, just take them out of version control.Before doing this it would be a good idea to setup the repository to ignore .DS_Store files.
find . -depth -name '.DS_Store' -exec git-rm --cached '{}' ; -print
以上是关于从git签出中删除.DSu存储文件的主要内容,如果未能解决你的问题,请参考以下文章