What command lists remote repositories?
Posted by SamPetr
Last Updated: June 08, 2024
To list remote repositories in a Git project, you can use the following command:
git remote -v
This command will display all the remote repositories associated with your local repository along with their corresponding fetch and push URLs. The -v (verbose) option ensures that the URLs are shown in the output.