@@ 3,9 3,36 @@ title: Mercurial on code.netlandish.com
---
You can find all Mercurial repositories on [hg.code.netlandish.com][nlhg]. If
-you have an account on our systems then you can also create your own repos for
+you have an account on our systems then you can also create your own repo's for
hosting, etc.
+## Updating Your Repository
+
+To update your local repository to use the new netlandish sourcehut platform
+simply go into your repository's root directory and edit the `.hg/hgrc` file.
+You will see the following:
+
+```
+[paths]
+default = ssh://hg@bitbucket.org/netlandish/repo_name
+```
+
+We need to change the default to the new platform. You can keep the BitBucket
+like if you'd like for the time being. This can be useful in case other team
+members have not updated their repo's yet or accidentally push to the wrong
+location and now you have to pull their changes in. Example:
+
+```
+[paths]
+default = ssh://hg@hg.code.netlandish.com/~netlandish/repo_name
+bb = ssh://hg@bitbucket.org/netlandish/repo_name
+```
+
+Then you can simply do things like: `hg pull bb` to pull from the BitBucket
+repo.
+
+## Collaboration
+
Collaboration is handled via email. All patches, discussion, code review, etc.
is done via email and our sourcehut platform.