Git命令用于标识创建特定分支的源

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

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

git bitbucket
1个回答
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
© www.soinside.com 2019 - 2024. All rights reserved.