Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将“dotfiles”Git 存储库克隆到我的主目录中,并且我正在尝试删除与之关联的所有文件。
如何安全地删除属于存储库的所有文件,而不会意外删除我的主目录中的任何其他文件?
您可以使用git ls-files列出存储库文件并将输出通过管道传输到rm
git ls-files
rm
git ls-files | awk -F "/" '{print $1}' | sort | uniq | xargs rm -rf
之后删除.git文件夹
.git
rm -rf .git