diff options
author | Bo Sun <bo@mboxify.com> | 2025-07-01 20:41:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-07-04 22:48:21 +0100 |
commit | eab29e5b541434724261aa390305ba856c5b5943 (patch) | |
tree | c94cb4bbb4c80e879a28aaaea5a96865be336968 | |
parent | d028bde7502d96ec86a25d0926777af6112a5267 (diff) | |
download | poky-eab29e5b541434724261aa390305ba856c5b5943.tar.gz |
bsp-guide: fix branch listing command
Replace 'git branch -al' with 'git branch -a' to correctly show both
local and remote branches. The '-l' option is unnecessary and may cause
confusion.
(From yocto-docs rev: 46aa3bb398c50af0f29acd2c1a05ee232d0de5b9)
Signed-off-by: Bo Sun <bo@mboxify.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/bsp-guide/bsp.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst index 3882172e2e..7eaa4d8700 100644 --- a/documentation/bsp-guide/bsp.rst +++ b/documentation/bsp-guide/bsp.rst | |||
@@ -204,7 +204,7 @@ section. | |||
204 | .. note:: | 204 | .. note:: |
205 | 205 | ||
206 | To see the available branch names in a cloned repository, use the ``git | 206 | To see the available branch names in a cloned repository, use the ``git |
207 | branch -al`` command. See the | 207 | branch -a`` command. See the |
208 | ":ref:`dev-manual/start:checking out by branch in poky`" | 208 | ":ref:`dev-manual/start:checking out by branch in poky`" |
209 | section in the Yocto Project Development Tasks Manual for more | 209 | section in the Yocto Project Development Tasks Manual for more |
210 | information. | 210 | information. |