Greetings everyone!
In the next few weeks I’m going to be migrating keep.imfreedom.org from the kubernetes cluster to a stand alone node. This will go mostly unnoticed to everyone, but to the developers with write access (using ssh), you may need to update your remotes.
hgkeeper itself doesn’t care about the SSH username, so you can update this immediately without any issue. If you cloned with ssh://keep.imfreedom.org
as the start of the URL, you’ll have to update your remote to include the hg
username.
Unfortunately, hg doesn’t have a command to edit this as they consider files that are modified by the user to not be machine readable, so you have to do it manually. To do this, you just need to edit the file .hg/hgrc
in your clones. In that file you’ll see a section like the following:
[paths]
default = ssh://keep.imfreedom.org/pidgin/pidgin
All you need to do is add the hg
user and save the file.
[paths]
default = ssh://hg@keep.imfreedom.org/pidgin/pidgin
You’ll of course have to do this with every clone, which sucks, but this is a one time deal.
If you have any questions, feel free to reply here.