Git:如何列出包含有关跟踪远程信息的分支?

发布于 2024-12-09 16:44:33 字数 222 浏览 0 评论 0原文

我想要一份所有分支机构的列表,其中包含有关它们跟踪的内容的信息。即:

$ git branch -a -???
master  <-> origin/master
new_menu  <-> origin/feature1
remotes/origin/master
remotes/origin/feature1

有办法实现这一目标吗?

I'd like to have a list of all branches with an info about what do they track. I.e.:

$ git branch -a -???
master  <-> origin/master
new_menu  <-> origin/feature1
remotes/origin/master
remotes/origin/feature1

Is there a way to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃不饱 2024-12-16 16:44:33

详细就是你想要的:

git branch -a -v

git branch -a -vv

--详细

显示每个头的 sha1 和提交主题行,以及与上游分支(如果有)的关系。如果给出两次,则打印
以及上游分支的名称。

Verbose is what you want:

git branch -a -v

or

git branch -a -vv

--verbose

Show sha1 and commit subject line for each head, along with relationship to upstream branch (if any). If given twice, print the
name of the upstream branch, as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文