我看过所有类似的问题。然而,我又检查了一遍,确实发生了一些奇怪的事情。
在一台服务器上(Solaris with Git 1.8.1),我克隆了Git存储库,然后将. Git文件夹复制到我现有的活动文件中。这很好,我可以跑了
git status
then
git diff [filename]
检查任何不同的文件。
在另一台服务器上(Solaris with Git 1.7.6),我做的完全相同
git diff [filename]
即使文件内容完全不同,也不会显示任何内容。我还测试了添加一个新文件,提交它,然后编辑。同样的问题,git status显示文件已更改,但git diff没有显示任何内容。如果我下载更改后的文件并在本地运行diff,那么我将得到diff输出。
简短的回答
运行git add有时会有所帮助。
例子
Git状态显示已更改的文件和Git diff显示什么都没有…
> 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: package.json
no changes added to commit (use "git add" and/or "git commit -a")
> git diff
>
运行git add可以解决不一致的问题。
> git add
> git status
On branch master
nothing to commit, working directory clean
>
简短的回答
运行git add有时会有所帮助。
例子
Git状态显示已更改的文件和Git diff显示什么都没有…
> 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: package.json
no changes added to commit (use "git add" and/or "git commit -a")
> git diff
>
运行git add可以解决不一致的问题。
> git add
> git status
On branch master
nothing to commit, working directory clean
>