我正在使用Bitbucket,想知道从哪个特定分支创建的源分支。是否有任何git命令可以给出父分支的名称?
答案 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