8

我添加了一个文件并提交了webpageone fresh.rhtml. 我在名字中留了一个空格。当我尝试删除它时,使用:

git rm -f /webpageone fresh.rhtml

我收到此错误:

pathspec '/webpageone' did not match any files.

我尝试删除另一个文件并且它起作用了......所以问题是间距。我怎样才能删除这个?

4

1 回答 1

16

这是一个 shell 问题,而不是一个 git 问题。你需要逃离这个空间。这应该有效:

git rm -f /webpageone\ fresh.rhtml

我想这也应该有效:

git rm -f "/webpageone fresh.rhtml"
于 2012-07-24T07:08:13.143 回答