Skip to content

Commit

Permalink
GitHub URLs are not case sensitive (#34576)
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Nguyen <150945400+nguyenalex836@users.noreply.github.com>
  • Loading branch information
ewels and nguyenalex836 committed Sep 16, 2024
1 parent dbfc6cf commit 8b11640
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 8b11640

Please sign in to comment.