Search code examples
mercurialequivalentgit-remote

mercurial equivalent to `git remotes -v`


I want to see a list of stored remote locations (as in url's) from which I can pull from.

With git, I can do git remote -v

Is there an equivalent with mercurial?


Solution

  • hg paths
    

    http://www.selenic.com/mercurial/hg.1.html#paths

    (seriously, there is nothing to add more)