git status显示暂存文件,但git commit没有提交任何内容

时间:2014-10-07 20:37:56

标签: git

我在舞台上添加了很多文件(重命名,删除和新文件)。

当我做git状态时,我有很多文件被提交为绿色提交,但是当我做git提交时,它说没有什么可以提交......有什么问题?我希望我不会失去我的改变。

git status
On branch develop
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        new file:   docs/file1
        new file:   docs/file2
        new file:   docs/file3
        modified:   webapp/file1.py
        modified:   webapp/file2.py
        # ETC...


git commit -m "Commit message"
On branch develop
nothing to commit, working directory clean

如果我执行git log,我会看到我的提交,但是当我执行git状态时,我仍然看到我的文件处于阶段状态,这很奇怪。

git log
commit 3a2b50f1f48912fc156504b82328fdcc3d6e2333
Author: Mike
Date:   Tue Oct 7 15:28:06 2014 -0500

    Commit message

0 个答案:

没有答案