summaryrefslogtreecommitdiffstats
path: root/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml')
-rw-r--r--documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml46
1 files changed, 35 insertions, 11 deletions
diff --git a/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml b/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml
index 62c4964f5f..d7206d2b97 100644
--- a/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml
+++ b/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.xml
@@ -131,19 +131,43 @@
131 <literallayout class='monospaced'> 131 <literallayout class='monospaced'>
132 $ git clone git://git.yoctoproject.org/poky 132 $ git clone git://git.yoctoproject.org/poky
133 Cloning into 'poky'... 133 Cloning into 'poky'...
134 remote: Counting objects: 361782, done. 134 remote: Counting objects: 428741, done.
135 remote: Compressing objects: 100% (87100/87100), done. 135 remote: Compressing objects: 100% (101285/101285), done.
136 remote: Total 361782 (delta 268619), reused 361439 (delta 268277) 136 remote: Total 428741 (delta 320552), reused 428579 (delta 320390)
137 Receiving objects: 100% (361782/361782), 131.94 MiB | 6.88 MiB/s, done. 137 Receiving objects: 100% (428741/428741), 153.04 MiB | 27.16 MiB/s, done.
138 Resolving deltas: 100% (268619/268619), done. 138 Resolving deltas: 100% (320552/320552), done.
139 Checking connectivity... done. 139 Checking connectivity... done.
140 $ git checkout tags/yocto-2.5 -b my-yocto-2.5
141 </literallayout> 140 </literallayout>
142 The previous Git checkout command creates a local branch 141 Move to the poky directory and take a look at the tags:
143 named my-&DISTRO_REL_TAG;. The files available to you in that 142 <literallayout class='monospaced'>
144 branch exactly match the repository's files in the 143 $ cd poky
145 "&DISTRO_NAME_NO_CAP;" development branch at the time of the 144 $ git fetch --tags
146 Yocto Project &DISTRO; release. 145 $ git tag
146 1.1_M1.final
147 1.1_M1.rc1
148 1.1_M1.rc2
149 1.1_M2.final
150 1.1_M2.rc1
151 .
152 .
153 .
154 yocto-2.5
155 yocto-2.5.1
156 yocto-2.5.2
157 yocto-2.6
158 yocto_1.5_M5.rc8
159 </literallayout>
160 For this example, check out the branch based on the
161 yocto-&DISTRO; release:
162 <literallayout class='monospaced'>
163 $ git checkout tags/yocto-&DISTRO; -b my-yocto-&DISTRO;
164 Switched to a new branch 'my-yocto-&DISTRO;'
165 </literallayout>
166 The previous Git checkout command creates a local branch named
167 my-yocto-&DISTRO;.
168 The files available to you in that branch exactly match the
169 repository's files in the "&DISTRO_NAME_NO_CAP;" development
170 branch at the time of the Yocto Project yocto-&DISTRO; release.
147 </para> 171 </para>
148 172
149 <para> 173 <para>