Moak
Moak

Reputation: 12885

How to remove remote origin from Mercurial repository?

Similar to this question I'm trying to disconnect my hg repository from a dead remote location, while keeping the local version control.

What is the hg equivalent of git remote remove origin?

Upvotes: 2

Views: 464

Answers (1)

Lazy Badger
Lazy Badger

Reputation: 97365

Handwork: remove obsoleted line from the [path] section of the repository configuration file, .hg/hgrc (and maybe related credentials from [auth], either in .hg/hgrc or ~/.hgrc).

Upvotes: 4

Related Questions