是否有一个命令(类似于git remote show)可以获取最新的远程分支提交哈希而无需通过提取来更新引用?
答案 0 :(得分:2)
您可以使用
git ls-remote <URL> <BRANCH>
您将获得以下输出:
λ git ls-remote https://github.com/rogerwang/node-webkit.git master
b5d2137d95d861ede02188dcbc7cdc459562d706 refs/heads/master
请参阅帮助页面:https://www.kernel.org/pub/software/scm/git/docs/git-ls-remote.html
答案 1 :(得分:-1)
尝试
git log origin/<branch> -1