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 如何在本地和远程之间找到修改过的文件
谁能告诉我 Git 命令可以在我的存储库中查找由其他人提交和推送的所有文件名,而不是由我提取(更新)的文件名。我想在不运行 pull 命令的情况下查看更改的文件。
谢谢。
您可以运行git fetchwhich 从远程服务器获取新提交,但它不会进行合并。所以你可以运行这个..
git fetch
git diff master origin/master
您可以通过以下方式获取所有master需要成为超集的提交的 git 日志origin/master
master
origin/master
git log master origin/master
反之亦然,通过改变master和 origin/master位置