标签: git bash
我正在寻找一种使用方式
git rm -r some-file some-folder
但如果路径/ pathspec不存在,则避免必须以1退出。
我尝试使用-f选项,但似乎没有用。
-f
任何人都知道如何实现这一目标?
答案 0 :(得分:3)
使用--ignore-unmatch选项:
--ignore-unmatch
即使没有文件匹配,也以零状态退出。
git rm -r --ignore-unmatch some-file some-folder