summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-newbie.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml
index 7dfedd93b0..1f41d1e935 100644
--- a/documentation/dev-manual/dev-manual-newbie.xml
+++ b/documentation/dev-manual/dev-manual-newbie.xml
@@ -579,14 +579,14 @@
579 $ cd ~ 579 $ cd ~
580 $ git clone git://git.yoctoproject.org/poky 580 $ git clone git://git.yoctoproject.org/poky
581 $ cd poky 581 $ cd poky
582 $ git checkout &DISTRO_NAME;-&POKYVERSION; -b &DISTRO_NAME;-&POKYVERSION; 582 $ git checkout -b my-&DISTRO_NAME;-&POKYVERSION; &DISTRO_NAME;-&POKYVERSION;
583 </literallayout> 583 </literallayout>
584 In this example, the name of the top-level directory of your local Yocto Project 584 In this example, the name of the top-level directory of your local Yocto Project
585 Files Git repository is <filename>poky</filename>. 585 Files Git repository is <filename>poky</filename>.
586 And, the name of the local branch you have created and checked out is 586 And, the name of the local branch you have created and checked out is
587 <filename>&DISTRO_NAME;-&POKYVERSION;</filename>. 587 <filename>my-&DISTRO_NAME;-&POKYVERSION;</filename>.
588 The files in your repository now exactly match the Yocto Project &DISTRO; 588 The files in your repository now exactly match the Yocto Project &DISTRO;
589 Release tag (&DISTRO_NAME;). 589 Release tag (<filename>&DISTRO_NAME;-&POKYVERSION;</filename>).
590 It is important to understand that when you create and checkout a local 590 It is important to understand that when you create and checkout a local
591 working branch based on a tag, your environment matches a specific point 591 working branch based on a tag, your environment matches a specific point
592 in time and not a development branch. 592 in time and not a development branch.