Bitbucket:查找用户所有未合并的分支

问题描述 投票:0回答:1

我正在使用 Bitbucket,想要找到所有未合并的分支,因为需要查看它们,如果不再需要,则将其删除。

git bitbucket
1个回答
0
投票

要列出您是头提交作者的分支,您可以使用:

# for local branches:
git log --no-walk --branches --author="[email protected]" --oneline

# for remote branches:
git log --no-walk --remotes --author="[email protected]" --oneline
© www.soinside.com 2019 - 2024. All rights reserved.