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 21:00:27 +0100
commit74c34c9d3c2a5f28d7e0bac3a5437ecd144e7367 (patch)
tree9a038f893167e6434b3057fd117077a3545e78db /documentation
parente9b8cf485cb53cf0a1ef4d8d7e2280263b041595 (diff)
downloadpoky-74c34c9d3c2a5f28d7e0bac3a5437ecd144e7367.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: 7b47dd460f240a0d7f07edf2767bcad1ddc9d4c3) 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>.