2012-07-23 72 views

回答

4

要分支之間移動:

git checkout <branch_name> 

要推一個分支的提交沒有是它,你可以在push命令後指定多個參數:

git push <remote> <branch_name> 

這將推動追蹤稱爲branch_name的遠程分支的本地分支。

+0

但是,如果你想保留你在當前分支上提交的任何東西(即使它沒有被引用引用),首先執行'git branch my-no-branch-with-commits'。 – fork0 2012-07-23 20:53:00

+0

@ fork0當我做'checkout'時''(no branch)'分支消失了,但是git告訴我使用hash來創建一個像fork0這樣的新分支,就像'git branch new_branch_name bc8adcb8da7bc8dabcd87a'一樣。然後,我剛剛合併,並推動工作。 – ChocoDeveloper 2012-07-23 23:50:07

相關問題