上次未推送的本地提交的Git Hash值

时间:2019-11-06 17:27:32

标签: git git-commit git-hash

我在分支主线上有3个本地提交,它们在远程仓库之前。如何获取最早的本地提交的哈希值?

  

示例:

     

A <-HEAD(主线)本地
  B
  C
  D <-原点/主线与远程同步

如何获取提交C的哈希值?

1 个答案:

答案 0 :(得分:2)

git log --pretty=%H origin/master..HEAD |tail -n1