From: Gerrit Pape Date: Tue, 5 Jun 2007 08:47:51 +0000 (+0000) Subject: Fix typo in remote branch example in git user manual X-Git-Tag: v1.5.2.2~18 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1da158ea339e863a1907225501f9153df5741db0;p=git.git Fix typo in remote branch example in git user manual In Documentation/user-manual.txt the example $ git checkout --track -b origin/maint maint under "Getting updates with git pull", should read $ git checkout --track -b maint origin/maint This was noticed by Ron, and reported through http://bugs.debian.org/427502 Signed-off-by: Gerrit Pape Signed-off-by: "J. Bruce Fields" --- diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index b64c55f3d..25695fe77 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -1682,7 +1682,7 @@ automatically set the default remote branch to pull from at the time that a branch is created: ------------------------------------------------- -$ git checkout --track -b origin/maint maint +$ git checkout --track -b maint origin/maint ------------------------------------------------- In addition to saving you keystrokes, "git pull" also helps you by