diff options
author | anujsolanki62 <anuj603362@gmail.com> | 2023-04-10 11:40:34 +0530 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-04-13 16:16:28 +0000 |
commit | 1bfa76c6eacdb09c713038289e2b48cea887276c (patch) | |
tree | 8c6e481ba2e37dbe3a24ea04583e9eb36ada8006 /docs | |
parent | 56ef0a2b10f85ddaba4fe142d9e8814d53eabc6a (diff) |
documentation: fix typo
Correct typo in git config command
Bug-AGL: SPEC-4752
Signed-off-by: Anuj Solanki <anuj603362@gmail.com>
Change-Id: Ibaa9a524ffb2a75fec6a43ced819611914d6fb45
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/28630
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/07_How_To_Contribute/03_Working_with_Gerrit.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/07_How_To_Contribute/03_Working_with_Gerrit.md b/docs/07_How_To_Contribute/03_Working_with_Gerrit.md index ccd9133..e04fe17 100644 --- a/docs/07_How_To_Contribute/03_Working_with_Gerrit.md +++ b/docs/07_How_To_Contribute/03_Working_with_Gerrit.md @@ -47,7 +47,7 @@ To work on something, whether a new feature or a bugfix: ```sh $ cd documentation - $ git.config --global user.name "Your Full Name" + $ git config --global user.name "Your Full Name" $ git config --global user.email "your@email.com" ``` @@ -55,7 +55,7 @@ To work on something, whether a new feature or a bugfix: ```sh $ cd documentation - $ git.config user.name "Your Full Name" + $ git config user.name "Your Full Name" $ git config user.email "your@email.com" ``` |