如何查找自上次推送以来在分支上推送的最后一次提交?

时间:2019-02-19 08:41:09

标签: git

使用git log --name-status给出该分支上的所有提交。

使用git log -1 --name-status仅给出最后一次提交。

我想获取上次推送中的最后一次提交。甚至知道最后一次推送中有多少个提交都会对我有帮助,因为我可以使用-n来参数化命令。

question处的答案对我没有帮助。使用git whatchanged也对我没有太大帮助。

1 个答案:

答案 0 :(得分:1)

只需在命令行末尾添加--remotes,例如:

 git log -1 --name-status --remotes