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 3cb6750d54..007c751a4e 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -121,18 +121,18 @@
121 For simplicity, it is recommended that you create these structures outside of the 121 For simplicity, it is recommended that you create these structures outside of the
122 Yocto Project files' Git repository.</para> 122 Yocto Project files' Git repository.</para>
123 <para>As an example, the following transcript shows how to create the bare clone 123 <para>As an example, the following transcript shows how to create the bare clone
124 of the <filename>linux-yocto-3.0</filename> kernel and then create a copy of 124 of the <filename>linux-yocto-3.0-1.1.x</filename> kernel and then create a copy of
125 that clone. 125 that clone.
126 <note>When you have a local Linux Yocto kernel Git repository, you can 126 <note>When you have a local Linux Yocto kernel Git repository, you can
127 reference that repository rather than the upstream Git repository as 127 reference that repository rather than the upstream Git repository as
128 part of the <filename>clone</filename> command. 128 part of the <filename>clone</filename> command.
129 Doing so can speed up the process.</note></para> 129 Doing so can speed up the process.</note></para>
130 <para>In the following example, the bare clone is named 130 <para>In the following example, the bare clone is named
131 <filename>linux-yocto-3.0.git</filename>, while the 131 <filename>linux-yocto-3.0-1.1.x.git</filename>, while the
132 copy is named <filename>linux-yocto-3.0</filename>: 132 copy is named <filename>my-linux-yocto-3.0-1.1.x-work</filename>:
133 <literallayout class='monospaced'> 133 <literallayout class='monospaced'>
134 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0 linux-yocto-3.0.git 134 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0-1.1.x linux-yocto-3.0-1.1.x.git
135 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0.git/ 135 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0-1.1.x.git/
136 remote: Counting objects: 2259181, done. 136 remote: Counting objects: 2259181, done.
137 remote: Compressing objects: 100% (373259/373259), done. 137 remote: Compressing objects: 100% (373259/373259), done.
138 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300) 138 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300)
@@ -141,8 +141,8 @@
141 </literallayout></para> 141 </literallayout></para>
142 <para>Now create a clone of the bare clone just created: 142 <para>Now create a clone of the bare clone just created:
143 <literallayout class='monospaced'> 143 <literallayout class='monospaced'>
144 $ git clone linux-yocto-3.0.git linux-yocto-3.0 144 $ git clone linux-yocto-3.0-1.1.x.git my-linux-yocto-3.0-1.1.x-work
145 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0/.git/ 145 Initialized empty Git repository in /home/scottrif/my-linux-yocto-3.0-1.1.x/.git/
146 Checking out files: 100% (36898/36898), done. 146 Checking out files: 100% (36898/36898), done.
147 </literallayout></para></listitem> 147 </literallayout></para></listitem>
148 <listitem id='poky-extras-repo'><para><emphasis> 148 <listitem id='poky-extras-repo'><para><emphasis>