summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/devtool-reference.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/devtool-reference.rst')
-rw-r--r--documentation/ref-manual/devtool-reference.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst
index cc5848fd4d..5075f0c224 100644
--- a/documentation/ref-manual/devtool-reference.rst
+++ b/documentation/ref-manual/devtool-reference.rst
@@ -204,20 +204,20 @@ specify these options when using the ``devtool add`` command:
204- To specify a source branch, use the ``--srcbranch`` option: 204- To specify a source branch, use the ``--srcbranch`` option:
205 :: 205 ::
206 206
207 $ devtool add --srcbranch DISTRO_NAME_NO_CAP jackson /home/user/sources/jackson 207 $ devtool add --srcbranch &DISTRO_NAME_NO_CAP; jackson /home/user/sources/jackson
208 208
209 In the previous example, you are checking out the DISTRO_NAME_NO_CAP 209 In the previous example, you are checking out the &DISTRO_NAME_NO_CAP;
210 branch. 210 branch.
211 211
212- To specify a specific tag or commit hash, use the ``--srcrev`` 212- To specify a specific tag or commit hash, use the ``--srcrev``
213 option: 213 option:
214 :: 214 ::
215 215
216 $ devtool add --srcrev DISTRO_REL_TAG jackson /home/user/sources/jackson 216 $ devtool add --srcrev &DISTRO_REL_TAG; jackson /home/user/sources/jackson
217 $ devtool add --srcrev some_commit_hash /home/user/sources/jackson 217 $ devtool add --srcrev some_commit_hash /home/user/sources/jackson
218 218
219 The previous examples check out the 219 The previous examples check out the
220 DISTRO_REL_TAG tag and the commit associated with the 220 &DISTRO_REL_TAG; tag and the commit associated with the
221 some_commit_hash hash. 221 some_commit_hash hash.
222 222
223.. note:: 223.. note::