2017-04-12 59 views

回答

1

顯示的提交位於您創建新分支的分支上。假設你從master創建newBranch,結構類似:

A---B---C master 
     \ 
      D newBranch 

所以提交顯示

D 
C 
B 
A 

如果你想從newBranch顯示提交,您可以在分行查看選項卡,選中分支並查看提交提交 Tab。

enter image description here

+0

這就是爲我工作。我正在從COMMIT選項查看我新創建的分支。那就是爲什麼在它下面進行提交。你的解決方案是解釋性的謝謝 –

0

選擇您想從(主)開始,比像之前從該點創建分支的分支。

另一種方法是使用命令行:

# checkout master 
git checkout master 

# create new branch out of master 
git checkout -b <newB> 

# push the new branch to the remote 
git push origin newB 
相關問題