标签: git recursion
有没有人在git命令窗口中知道替代命令行?
del *.orig /s
(所以删除扩展名为.orig的所有文件递归)
答案 0 :(得分:3)
看起来你在Windows中运行?如果你正在使用git bash,你可以这样做:
find -name *.orig | xargs rm
答案 1 :(得分:3)
你不必使用xargs来完成这个......
find . -name *.orig -exec git rm -r --cached {} \;