drevicko
drevicko

Reputation: 15180

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?

Upvotes: 1

Views: 247

Answers (1)

zerkms
zerkms

Reputation: 254896

hg paths

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

(seriously, there is nothing to add more)

Upvotes: 3

Related Questions