Reputation: 12885
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
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