Skip to content

Commit

Permalink
github URLs are not case sensitive
Browse files Browse the repository at this point in the history
Fixes #34573
  • Loading branch information
ewels committed Sep 13, 2024
1 parent 293a732 commit 2314fee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ There's no minimum Git version necessary to interact with {% data variables.prod
### Ensure the remote is correct
The repository you're trying to fetch must exist on {% data variables.location.product_location %}, and the URL is case-sensitive.
The repository you're trying to fetch must exist on {% data variables.location.product_location %}.
You can find the URL of the local repository by opening the command line and
typing `git remote -v`:
```shell
$ git remote -v
# View existing remotes
> origin https://github.com/ghost/reactivecocoa.git (fetch)
> origin https://github.com/ghost/reactivecocoa.git (push)
> origin https://github.com/ghost/cocoareactive.git (fetch)
> origin https://github.com/ghost/cocoareactive.git (push)

$ git remote set-url origin https://github.com/ghost/ReactiveCocoa.git
# Change the 'origin' remote's URL
Expand Down

0 comments on commit 2314fee

Please sign in to comment.