gpt4 book ai didi

git - 如何在 git 中列出分支的提交数量在 master 之前或之后?

转载 作者:行者123 更新时间:2023-12-04 15:12:41 24 4
gpt4 key购买 nike

我真的很喜欢 Github/branches 页面如何列出分支和一个列,该列指示分支在 master 之前或之后的提交数量。
有没有办法在控制台/cli 中查看此信息?
编辑:This solution展示了如何提前/落后于单个分支的提交。但是我怎么能对所有本地分支机构都这样做呢?
enter image description here

最佳答案

git for-each-ref refs/heads/ --format='%(refname:short)' |
while read branch; do
echo -n "$branch: "
git rev-list --left-right --count master..$branch
done
文档:
https://git-scm.com/docs/git-for-each-ref
https://git-scm.com/docs/git-rev-list

关于git - 如何在 git 中列出分支的提交数量在 master 之前或之后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64937768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com