When git clone some repository then it retrieves all branches from it:
git clone https://github.com/android/platform_build.git build1
cd build1/ && git branch -a && cd ..
then, when I use build1
as a mirror and clone it, I do not see all its remote branches (I see only build1
's local master branch)
git clone build1 build2
cd build2 && git branch -a && cd ..
How can I checkout remote of remote branches ?
I know that I can checkout all remote branches in build1 mirror with command
cd build1 && for remote in `git branch -r `; do git branch --track $remote; done
Track all remote git branches as local branches but what if I do not have access to build1 directory ?
Also, there is git ls-remote origin
command which shows all remote refs, but is there any elegant way to checkout those remote of remote branches ?
After you clone
build1
tobuild2
,build1
isbuild2
'sorigin
, andbuild2
knows nothing abouthttps://github.com/android/platform_build.git
, which is where the "remote" branches live. One solution may be to addhttps://github.com/android/platform_build.git
as a remote in the configuration ofbuild2
. To add a remote calledgithub
:Then run a
fetch
to get the remote branches:Now, when you run
git branch -a
you should see branches prefixed withremotes/github/
that correspond with those prefixed withremotes/origin
inbuild1
.On the other hand,
build2
should have a remote branch for each local branch inbuild1
, including those that are tracking remote branches frombuild1
's perspective. For example, if there is a branch namedfoo
on github, it will show up asremotes/origin/foo
inbuild1
. If you set up a local branch to track that remote branch inbuild1
also calledfoo
, thenbuild2
should have aremotes/origin/foo
as well. Then, whenfoo
is updated inbuild1
by fetching/merging changes from github'sfoo
, those changes should show up inbuild2
after afetch
/pull
.