我有两台机器,一台使用 git 1.7.0.4,另一台使用 1.7.12.4(Apple Git-37)。
我已经在每台机器上修改了树中的一个文件(相同的更改,相同的文件,但位于两台不同的计算机上),但还没有在任何一台上暂存。
# 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: Rakefile
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# Hs-At_AND/
(两个版本的 git 显示略有不同。我只显示 1.7.12.4 显示。)
在 1.7.12.4(在我的 Mac 上),git diff Rakefile
显示 Rakefile 相对于 repo 版本的变化。
但另一方面,git diff Rakefile
什么也不做。没有输出,没有错误信息。
StackOverflow 上还有其他类似的问题(例如, git diff 没有输出),但这些似乎都在询问未跟踪的文件。我的问题是关于已跟踪但尚未暂存的文件。
显然我在这里没有做错任何事。那我的安装有什么问题吗?有什么我可以改变的.gitconfig
吗?