Git命令来标识从中创建特定分支的源

时间:2019-02-22 06:44:42

标签: git bitbucket

我正在使用Bitbucket,想知道从哪个特定分支创建的源分支。是否有任何git命令可以给出父分支的名称?

1 个答案:

答案 0 :(得分:0)

尝试一下

1) git log --oneline --graph --color --all --decorate
// Using this command you will get all git log in command line

2) gitk --all
// This is GUI based solution, you need to download gitk library for this