无法摆脱“未提交的变更”

时间:2012-11-29 16:55:35

标签: git

我无法摆脱我的repo似乎被锁定的状态。在重置为HEAD~1后,我不断收到有关此单个文件被修改的通知。 'add'和'checkout'没有影响。我有core.autocrlf和core.safecrlf未设置(空)。

请参阅以下内容:

$ git --version
git version 1.7.9.6 (Apple Git-31.1)

$ git status

# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   a_file_name.cpp

以下命令(单独运行)没有任何影响:

$ git checkout -- a_file_name.cpp
$ git reset a_file_name.cpp
$ git add a_file_name.cpp
$ git reset --hard
$ git clean -n
<nothing>
$ git clean -f
<nothing>

$ git status

# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   a_file_name.cpp

它继续......

我做错了什么?

回复@ Don的建议如下(git rm),没有变化,但这是怎么回事:

$ git rm 
error: 'a_file_name.cpp' has local modifications
(use --cached to keep the file, or -f to force removal)
$ git rm -f a_file_name.cpp
rm 'a_file_name.cpp'
$ git status

# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       deleted:    a_file_name.cpp
#
# 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:    a_file_name.cpp
#

$ git commit -m"tmp"
[master 2a9e054] tmp
1 file changed, 174 deletions(-)
delete mode 100644 a_file_name.cpp

$ git status
# Your branch is ahead of 'origin/master' by 1 commit.
#
# 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:    a_file_name.cpp
#

几乎回到sq.1

4 个答案:

答案 0 :(得分:6)

git commit -a -m "message"

-a选项将添加所有带有修改的跟踪文件

答案 1 :(得分:4)

关于对我有用的方法是:

  1. 重新创建我删除的文件。

  2. git add path/filename

  3. git rm --cached path/filename

  4. 删除文件

  5. git add .

  6. git commit --amend # if not on an already pushed branch.

答案 2 :(得分:1)

您是否需要修改文件中的任何更改? git-reset默认情况下将文件保留在目录树中。

git reset --hard

将使用提交中的文件重置并写入工作树中的文件。

你是否在每个步骤之后完成了git diff以查看是否确实存在任何更改?

答案 3 :(得分:1)

运行任何git命令时,请确保您与文件位于同一目录中。或者,您可以使用与git命令一起使用的文件的相对路径或绝对路径。 git status 的输出应指示文件所在的子目录。我觉得很奇怪你在这里发布的输出没有显示出来。