diff mbox series

[2/2] bsp-guide: fix branch listing command

Message ID 20250701124143.1756426-2-bo@mboxify.com
State New
Headers show
Series [1/2] bsp-guide: fix README link for meta-intel layer | expand

Commit Message

Bo Sun July 1, 2025, 12:41 p.m. UTC
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.

Signed-off-by: Bo Sun <bo@mboxify.com>
---
 documentation/bsp-guide/bsp.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst
index 3882172e2..7eaa4d870 100644
--- a/documentation/bsp-guide/bsp.rst
+++ b/documentation/bsp-guide/bsp.rst
@@ -204,7 +204,7 @@  section.
       .. note::
 
          To see the available branch names in a cloned repository, use the ``git
-         branch -al`` command. See the
+         branch -a`` command. See the
          ":ref:`dev-manual/start:checking out by branch in poky`"
          section in the Yocto Project Development Tasks Manual for more
          information.