1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/content/get-started/quickstart
MTindev d8bd4a0e31 Remove unexpected spaces and HTML tag in code
There are unexpected HTML tag between "username" and "fork name", making the URLs not match what is displayed when running the commands.
There also is an unexpected HTML closing tag `</em>` which is not opened previously.

```shell
  $ git remote -v
  > origin    https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/ YOUR_FORK</em>.git (fetch)
  > origin    https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/YOUR_FORK.git (push)
  > upstream  https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/ ORIGINAL_REPOSITORY.git (fetch)
  > upstream  https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/ ORIGINAL_REPOSITORY.git (push)
```

should be : 

```shell
  $ git remote -v
  > origin    https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/YOUR_FORK.git (fetch)
  > origin    https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/YOUR_FORK.git (push)
  > upstream  https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
  > upstream  https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)
  ```
2022-11-18 12:13:19 +01:00
..
2021-10-15 15:41:33 -05:00
2022-11-17 13:08:49 +00:00