84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
git创建一个分支下的子分支的正确方式应该是什么
Two steps
#切换到分支 git checkout branch1 #基于该分支创建子分支 git checkout -b branch2_based_on_b1 branch1
checkout -b
git checkout -b new branch name old branch name (this way of writing means creating a new branch based on the old branch)
Two steps
checkout -b
git checkout -b new branch name old branch name (this way of writing means creating a new branch based on the old branch)