Follow-Up: Change code blocks to shell type

This commit is contained in:
Marcel Amirault 2019-08-07 04:01:10 +00:00 committed by Evan Read
parent 4bbf942010
commit b6cb595d39
1 changed files with 3 additions and 3 deletions

View File

@ -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>
```