Remote Repository URLs in Git
You can view the read and write addresses of this remote repository by running the remote
command with the -v
flag:
git remote -v
In the message we will see the name we gave to the remote repository and the address for reading the project - fetch
and writing - push
:
origin https://github.com/user/my-project (fetch)
origin https://github.com/user/my-project (push)
View information about your remote repository's URLs.