我創建了一個使用SourceTree和git流(按下按鈕)的功能分支。然後我試圖將這些分支克隆到另一個本地副本中,但我無法再在本地獲得這些分支。舉例來說,如果我發出:獲取使用gitflow創建的分支?
的Git分支-v -a,我看到:
[email protected] MINGW64 /C/Dogwood (develop)
$ git branch -v -a
* develop de5e2f2 Updated to Build 4.1.6.37
master 0aa9613 Release 4.1.6.37
remotes/origin/HEAD -> origin/master
remotes/origin/develop de5e2f2 Updated to Build 4.1.6.37
remotes/origin/feature/cleanups ef035e9 Added alert dialog
remotes/origin/master 0aa9613 Release 4.1.6.37
所以遙控器/ *被git的流動產生。我只創建開發和手動掌握
但是,如何輕鬆地將所有遙控器克隆回本地驅動器?
我試圖
git fetch
,但不知道它做了,因爲如果我發出
git branch
我只有我的驅動器上看到的兩個主要分支。
* develop
master
[email protected] MINGW64 /C/Dogwood (develop)
有沒有簡單的方法克隆所有這些分支,而不需要重新克隆整個回購?
thx!
你應該可以做git checkout remote_branch_here。 http://stackoverflow.com/questions/1783405/checkout-remote-git-branch –