怎么查看当前的git分支是基于哪个分支创建的?

怎么查看当前的git分支是基于哪个分支创建的?

比如我从 branch A 切出一个 branch B
然后对branch B做了一系列的操作
然后忘记了branch B是从哪个分支切出来的
请问能不能找到基于哪个分支创建的?

git reflog show

32c3956 (HEAD -> currentBranch, origin/fatherBranch, fatherBranch, list) childBranch@{0}: branch: Created from fatherBranch

childBranch 是你新建的分支。
fatherBranch 是它的父分支,也就是来源分支。

你可能感兴趣的:(怎么查看当前的git分支是基于哪个分支创建的?)