diff options
author | Marcel Amirault <mamirault@gitlab.com> | 2019-08-07 04:01:10 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-08-07 04:01:10 +0000 |
commit | b6cb595d39f78a6297e7051319a9632a4013e4e7 (patch) | |
tree | 77bba77e283d87c228c06a95b8f09ee7558e44f4 /doc | |
parent | 4bbf94201085defb9bcbca3d577c2752f4e3b35b (diff) | |
download | gitlab-ce-b6cb595d39f78a6297e7051319a9632a4013e4e7.tar.gz |
Follow-Up: Change code blocks to shell type
Diffstat (limited to 'doc')
-rw-r--r-- | doc/topics/git/useful_git_commands.md | 6 |
1 files 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 <file> ### Use a custom SSH key for a git command -```text +```sh GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command> ``` @@ -157,13 +157,13 @@ GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command> With SSH: -```text +```sh GIT_SSH_COMMAND="ssh -vvv" git clone <git@url> ``` With HTTPS: -```text +```sh GIT_TRACE_PACKET=1 GIT_TRACE=2 GIT_CURL_VERBOSE=1 git clone <url> ``` |