summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-start.xml
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/dev-manual/dev-manual-start.xml')
-rw-r--r--documentation/dev-manual/dev-manual-start.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml
index 5cdc34be9c..d9f042bc61 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -117,18 +117,18 @@
117 For simplicity, it is recommended that you create these structures outside of the 117 For simplicity, it is recommended that you create these structures outside of the
118 Yocto Project files' Git repository.</para> 118 Yocto Project files' Git repository.</para>
119 <para>As an example, the following transcript shows how to create the bare clone 119 <para>As an example, the following transcript shows how to create the bare clone
120 of the <filename>linux-yocto-3.0</filename> kernel and then create a copy of 120 of the <filename>linux-yocto-3.0-1.1.x</filename> kernel and then create a copy of
121 that clone. 121 that clone.
122 <note>When you have a local Linux Yocto kernel Git repository, you can 122 <note>When you have a local Linux Yocto kernel Git repository, you can
123 reference that repository rather than the upstream Git repository as 123 reference that repository rather than the upstream Git repository as
124 part of the <filename>clone</filename> command. 124 part of the <filename>clone</filename> command.
125 Doing so can speed up the process.</note> 125 Doing so can speed up the process.</note>
126 In the following example, the bare clone is named 126 In the following example, the bare clone is named
127 <filename>linux-yocto-3.0.git</filename>, while the 127 <filename>linux-yocto-3.0-1.1.x.git</filename>, while the
128 copy is named <filename>linux-yocto-3.0</filename>: 128 copy is named <filename>my-linux-yocto-3.0-1.1.x-work</filename>:
129 <literallayout class='monospaced'> 129 <literallayout class='monospaced'>
130 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0 linux-yocto-3.0.git 130 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0-1.1.x linux-yocto-3.0-1.1.x.git
131 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0.git/ 131 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0-1.1.x.git/
132 remote: Counting objects: 2259181, done. 132 remote: Counting objects: 2259181, done.
133 remote: Compressing objects: 100% (373259/373259), done. 133 remote: Compressing objects: 100% (373259/373259), done.
134 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300) 134 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300)
@@ -137,8 +137,8 @@
137 </literallayout></para> 137 </literallayout></para>
138 <para>Now create a clone of the bare clone just created: 138 <para>Now create a clone of the bare clone just created:
139 <literallayout class='monospaced'> 139 <literallayout class='monospaced'>
140 $ git clone linux-yocto-3.0.git linux-yocto-3.0 140 $ git clone linux-yocto-3.0-1.1.x.git my-linux-yocto-3.0-1.1.x-work
141 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0/.git/ 141 Initialized empty Git repository in /home/scottrif/my-linux-yocto-3.0-1.1.x/.git/
142 Checking out files: 100% (36898/36898), done. 142 Checking out files: 100% (36898/36898), done.
143 </literallayout></para></listitem> 143 </literallayout></para></listitem>
144 <listitem id='poky-extras-repo'><para><emphasis> 144 <listitem id='poky-extras-repo'><para><emphasis>