0

有谁知道 git 命令窗口中的替代命令行?

del *.orig /s 

(所以删除所有扩展名为 .orig recursive 的文件)

4

2 回答 2

3

您不必使用 xargs 来完成此操作...

find . -name *.orig -exec git rm -r --cached {} \;

于 2013-02-13T16:40:46.203 回答
3

Looks like you're running in windows? If you're using git bash, you can do:

find -name *.orig | xargs rm
于 2013-02-12T13:37:47.750 回答