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 log origin/master..master
可选地交换一些其他分支名称origin/master和master(例如,origin/mybranch和mybranch)。
origin/master
master
origin/mybranch
mybranch
类似的东西
git diff master origin/master
可能会奏效。但这将为您提供比提交列表更多的信息,因此您可能需要使用不同的选项。
编辑:但你可能需要运行
git fetch
第一的