From b6cb595d39f78a6297e7051319a9632a4013e4e7 Mon Sep 17 00:00:00 2001 From: Marcel Amirault Date: Wed, 7 Aug 2019 04:01:10 +0000 Subject: [PATCH] Follow-Up: Change code blocks to shell type --- doc/topics/git/useful_git_commands.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/topics/git/useful_git_commands.md b/doc/topics/git/useful_git_commands.md index 84406805350..030e62f485a 100644 --- a/doc/topics/git/useful_git_commands.md +++ b/doc/topics/git/useful_git_commands.md @@ -149,7 +149,7 @@ gitk --follow ### Use a custom SSH key for a git command -```text +```sh GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git ``` @@ -157,13 +157,13 @@ GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git With SSH: -```text +```sh GIT_SSH_COMMAND="ssh -vvv" git clone ``` With HTTPS: -```text +```sh GIT_TRACE_PACKET=1 GIT_TRACE=2 GIT_CURL_VERBOSE=1 git clone ```