我做了一个git commit -m "message",像这样:

> git commit -m "save arezzo files"
# On branch master
# 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:   arezzo.txt
#       modified:   arezzo.jsp
#
no changes added to commit (use "git add" and/or "git commit -a")

但是之后,当我做git状态时,它显示了相同的修改文件:

> git status
# On branch master
# 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:   arezzo.txt
#       modified:   arezzo.jsp
#
no changes added to commit (use "git add" and/or "git commit -a")

我做错了什么?


当前回答

也许是显而易见的事情,但是……

如果索引有问题,可以使用git-gui。您可以很好地了解索引(暂存区)实际上是如何工作的。

另一个帮助我理解索引的信息来源是Scott Chacons的《Getting Git》第259页。

我开始使用命令行,因为大多数文档只显示…

我认为git-gui和gitk实际上让我工作得更快,我摆脱了像“git pull”这样的坏习惯……现在我总是先取……在我合并之前看看新的变化到底是什么。

其他回答

我把Git源代码控制下的一个子项目复制到另一个项目中,忘记删除. Git文件夹。当我去提交时,我得到了与上面相同的消息,直到我删除了。git文件夹才能清除它。

这有点傻,但值得检查一下你的文件夹下是否有一个不能提交的。git文件夹。

如果你有一个子文件夹,它是从其他git-Repository中克隆出来的,首先你必须删除$。get $ file from child-Repository Rm -rf .git 然后你可以切换到父文件夹,使用git add -A。

你应该:

git commit . -m "save arezzo files"

如果你有更多的文件,在我的例子中,我有7000个图像文件,当我试图从项目的路由文件夹中添加它们时,它还没有添加它们,但当我进入图像文件夹时,一切正常。通过目标文件夹和命令,像俯视图

git add .
git commit -am "image uploading"
git push origin master

git push origin master枚举对象:6574,完成。计数对象:100%(6574/6574),完成。Delta压缩使用高达4 线程压缩对象:100%(6347/6347),完成。写作对象: 28% (1850/6569), 142.17 MiB | 414.00 KiB/s

也许是显而易见的事情,但是……

如果索引有问题,可以使用git-gui。您可以很好地了解索引(暂存区)实际上是如何工作的。

另一个帮助我理解索引的信息来源是Scott Chacons的《Getting Git》第259页。

我开始使用命令行,因为大多数文档只显示…

我认为git-gui和gitk实际上让我工作得更快,我摆脱了像“git pull”这样的坏习惯……现在我总是先取……在我合并之前看看新的变化到底是什么。