Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试查看某些本地文件是否与我的 git repo 同步,为此我使用以下命令
git diff-index --name-only HEAD --;
问题是这显示的文件在没有被标记为已更改时
使用以下命令时没有文件差异
git diff --name-only HEAD --;
为什么我得到不同的结果?!
谢谢!
如果您正在检查文件使用的状态,git status它将向您显示未与您的存储库同步的内容
git status
在未同步使用的每个文件上git diff file_name,您将看到 repo 状态和当前状态之间的差异
git diff file_name