diff options
author | Paul Eggleton <paul.eggleton@microsoft.com> | 2021-04-12 14:03:51 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-15 20:18:57 +0100 |
commit | 06e98c4b80b6abc9429fc84b441dc769163cb911 (patch) | |
tree | d3a60e51761c879d62a86dd9bb609d1138e36655 /documentation | |
parent | 6a4a9e83335a6dbd675cd960175322103ee0d283 (diff) | |
download | poky-06e98c4b80b6abc9429fc84b441dc769163cb911.tar.gz |
overview-manual: fix git command line
There was an en dash here instead of a hyphen; this meant that the
command line could not be copied and pasted verbatim. (Admittedly that
is less likely here than in other examples, but let's correct it
anyway.)
(From yocto-docs rev: 4f289752fab3529516ad44e6e62a1042c339fd13)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/overview-manual/development-environment.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/overview-manual/development-environment.rst b/documentation/overview-manual/development-environment.rst index 6d1dbfcc72..a33f89e4fa 100644 --- a/documentation/overview-manual/development-environment.rst +++ b/documentation/overview-manual/development-environment.rst | |||
@@ -542,7 +542,7 @@ descriptions and strategies on how to use these commands: | |||
542 | in this form assumes the local branch already exists. This command is | 542 | in this form assumes the local branch already exists. This command is |
543 | analogous to "cd". | 543 | analogous to "cd". |
544 | 544 | ||
545 | - *git checkout –b working-branch upstream-branch:* Creates and | 545 | - *git checkout -b working-branch upstream-branch:* Creates and |
546 | checks out a working branch on your local machine. The local branch | 546 | checks out a working branch on your local machine. The local branch |
547 | tracks the upstream branch. You can use your local branch to isolate | 547 | tracks the upstream branch. You can use your local branch to isolate |
548 | your work. It is a good idea to use local branches when adding | 548 | your work. It is a good idea to use local branches when adding |