1
0
mirror of synced 2025-12-22 11:26:57 -05:00

Remove uneeded whitespace on git remote rm example output

- Removed uneeded whitspace on `git remote rm` example, that could lead to confusion about the expected command output.
This commit is contained in:
PeGaSuS
2022-11-14 10:31:26 +01:00
committed by GitHub
parent f79dad4d79
commit 4f2ca29da5

View File

@@ -212,8 +212,8 @@ $ git remote rm destination
# Remove remote
$ git remote -v
# Verify it's gone
> origin https://{% data variables.command_line.codeblock %}/ OWNER/REPOSITORY.git (fetch)
> origin https://{% data variables.command_line.codeblock %}/ OWNER/REPOSITORY.git (push)
> origin https://{% data variables.command_line.codeblock %}/OWNER/REPOSITORY.git (fetch)
> origin https://{% data variables.command_line.codeblock %}/OWNER/REPOSITORY.git (push)
```
{% warning %}