获取在git中创建(当前)分支的分支的名称

时间:2018-03-23 05:05:11

标签: git git-branch

假设我从feature1分支创建了一个名为develop的分支。

另外,我从issue123分支创建了feature1分支。

现在我想知道feature1是从develop分支创建的,同样issue123分支是从develop分支创建的。

我该怎么做?

非常感谢任何帮助。感谢。

2 个答案:

答案 0 :(得分:0)

已经有类似的问题,这里是答案的链接。

这将打印一个分支树。

Output of git branch in tree like fashion

答案 1 :(得分:0)

不完全是你想要的,但是它的一些紧密解决方案是..

git show-branch
git show-branch --all

而且,

git log --all --graph --decorate --oneline --simplify-by-decoration