summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-04-25 10:23:29 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-01 20:50:45 +0100
commit88b3ff09512492ff7fb2f8e7571886d1b6b48126 (patch)
treed5fdf72b742cfd583e05f13326b6ccc0fb3cc7c1 /documentation
parent0bb47e87a94adc8acd0ad789d843561668f0c0f9 (diff)
downloadpoky-88b3ff09512492ff7fb2f8e7571886d1b6b48126.tar.gz
documentation/dev-manual/dev-manual-newbie.xml: Fixed branch example
The example in the "Repositories, Tags, and Branches" section that creates a local branch that tracks the upstream branch is incorrect. The syntax should be "git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME; Fixed it. (From yocto-docs rev: ec80d43ad97370771c9cd7f7e6a4637db5f80e9b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-newbie.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml
index a8a5e64c22..7dfedd93b0 100644
--- a/documentation/dev-manual/dev-manual-newbie.xml
+++ b/documentation/dev-manual/dev-manual-newbie.xml
@@ -527,7 +527,7 @@
527 $ cd ~ 527 $ cd ~
528 $ git clone git://git.yoctoproject.org/poky 528 $ git clone git://git.yoctoproject.org/poky
529 $ cd poky 529 $ cd poky
530 $ git checkout &DISTRO_NAME; -b &DISTRO_NAME; 530 $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME;
531 </literallayout> 531 </literallayout>
532 In this example, the name of the top-level directory of your local Yocto Project 532 In this example, the name of the top-level directory of your local Yocto Project
533 Files Git repository is <filename>poky</filename>. 533 Files Git repository is <filename>poky</filename>.