From: Nicholas Clark Date: Sun, 21 Dec 2008 12:09:33 +0000 (+0000) Subject: Note the correct way to make a branch to track a remote branch. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6051489bf3ed901941518ff781077348547b005d;p=p5sagit%2Fp5-mst-13.2.git Note the correct way to make a branch to track a remote branch. --- diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index 0ba315d..80fe8ec 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -133,6 +133,10 @@ To switch to another branch: % git checkout origin/maint-5.8-dor +To make a local branch of a remote branch: + + % git checkout -b maint-5.10 origin/maint-5.10 + To switch back to blead: % git checkout blead