Guillermo Rozas <[email protected]> wrote: > Can someone explain why when I do: > > bruce@admin:~/Downloads/darktable-dev/darktable$ git branch > * master > > ...all I see is master? > > When you cloned darktable's repository from Github you got only the master > branch (wich is the default > behaviour). "git branch" shows you only local branches by default, so > "master" is the only thing it can show. > > I expected to see a branch for 3.4.1 > > To also show remote branches you need to do "git branch -a". You can clone > and track other branches locally, > but I'm away from the computer and my git-fu is not good enough to risk > giving you instructions from memory > :-)
Ciao Guillermo, You are correct in that "git branch" only shows you the local branches. But when you perform a clone (or a pull or a fetch) you already have all of the (remote) branches. You just have to check then out with "git checkout". > Best regards, > Guillermo > > ____________________________________________________________________________ > darktable user mailing list to > unsubscribe send a mail to [email protected] > = > > ---------------------------------------------------- > Alternatives: > > ---------------------------------------------------- -- Bill Wohler <[email protected]> aka <[email protected]> http://www.newt.com/wohler/, GnuPG ID:610BD9AD ____________________________________________________________________________ darktable user mailing list to unsubscribe send a mail to [email protected]
