On 21/09/10 20:32, Alvaro Herrera wrote:
What I find is that after doing the local clone for the branch, i.e. git clone postgresql REL9_0_STABLE this clones only the "master" branch somehow, not the other branches; so when I later run git checkout REL9_0_STABLE on that clone, it fails with this message:
It clones all branches, but it only creates a local tracking branch for master automatically. The others you'll have to create manually:
git branch REL9_0_STABLE origin/REL9_0_STABLE Try also "git branch -a", it is quite enlightening. -- Heikki Linnakangas EnterpriseDB http://www.enterprisedb.com -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers