Commit b6cb595d authored by Marcel Amirault's avatar Marcel Amirault Committed by Evan Read

Follow-Up: Change code blocks to shell type

parent 4bbf9420
...@@ -149,7 +149,7 @@ gitk --follow <file> ...@@ -149,7 +149,7 @@ gitk --follow <file>
### Use a custom SSH key for a git command ### Use a custom SSH key for a git command
```text ```sh
GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command> GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command>
``` ```
...@@ -157,13 +157,13 @@ GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command> ...@@ -157,13 +157,13 @@ GIT_SSH_COMMAND="ssh -i ~/.ssh/gitlabadmin" git <command>
With SSH: With SSH:
```text ```sh
GIT_SSH_COMMAND="ssh -vvv" git clone <git@url> GIT_SSH_COMMAND="ssh -vvv" git clone <git@url>
``` ```
With HTTPS: With HTTPS:
```text ```sh
GIT_TRACE_PACKET=1 GIT_TRACE=2 GIT_CURL_VERBOSE=1 git clone <url> GIT_TRACE_PACKET=1 GIT_TRACE=2 GIT_CURL_VERBOSE=1 git clone <url>
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment