Gitkraken / Github / git:从非父分支创建新分支

Gitkraken / Github / git: creating new branch from a non parent branch

在我的远程存储库中,我有:

Origin
feature
abc 
20200801_branch_1
20200802_branch_2
.
.
abc 
develop

我想用 feature/abc/develop 中的数据创建一个新分支 feature/abc/20200811_mybranch。我该怎么做?

谢谢!!

有几种方法 (checkout -b, branch) 可以通过细微差别实现这个简单的动作:

1) 您目前已 feature/abc/develop 签出,您想创建新分支但留在 feature/abc/develop

git branch feature/abc/20200811_mybranch

2) 您目前已经 feature/abc/develop 签出,您想创建新分支并在同一步骤中签出

git checkout -b feature/abc/20200811_mybranch

3) 你有另一个分支(比方说 abc)签出,你想从 feature/abc/develop 创建你的新分支但留在你的当前分支

git branch feature/abc/20200811_mybranch feature/abc/develop

4) 你有另一个分支(比方说 abc)签出,你想从 feature/abc/develop 创建你的新分支并签出立即新分支

git checkout -b feature/abc/20200811_mybranch feature/abc/develop