2014-01-14 181 views
0

當我做git svn rebase時,我在使用哪個本地GIT分支?很多時候,我在本地分支(如trunk_work)上保持與本地trunk分支同步,該分支映射到上游SVN分支。我總是不得不切換到trunk,然後做rebase,但我想知道它是否也在trunk_work內?看起來這個rebase不是你典型的rebase,因爲git-svn足夠聰明,知道哪些本地分支映射到SVN分支並更新它們。但我想確認一下。謝謝。什麼分支git svn rebase?

回答

1

根據git help svn

rebase 
     This fetches revisions from the SVN parent of the current HEAD and 
     rebases the current (uncommitted to SVN) work against it. 

...我採取意味着僅在當前分支git svn rebase作品,所以它確實無論你是在哪個分支。

+0

謝謝,也許我對'git svn fetch'的日誌輸出感到困惑,它的確如此,我想也許這是更新所有分支的那個。 –