git删除以冒号开头的文件

时间:2013-09-27 19:53:28

标签: git unix filenames

我不小心创建了一个名为:w的文件。我设法通过使用zsh选项卡功能删除它。但我无法将其从我的git缓存中删除。

    git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   modified:   Gemfile
#   modified:   Gemfile.lock
#   new file:   config/newrelic.yml
#
# Changes not staged for commit:
#   (use "git add/rm <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   deleted:    :w
#

然后

git rm :w
fatal: pathspec 'w' did not match any files

1 个答案:

答案 0 :(得分:10)

在5分钟后找到答案

git rm '\:w'