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.
是否可以使用一些额外的过滤器来做git clean -xdf ?我想要做的是删除所有未跟踪的文件,但保留具有特定文件扩展名的文件。
使用该-e选项指定排除模式。
-e
.txt示例:这将删除所有未跟踪的文件,但具有扩展名的文件除外:
.txt
git clean -xdfe *.txt