| 1 | |
| 2 | == Mercurial |
| 3 | [https://mercurial-scm.org Mercurial] is a free, distributed source control management tool. |
| 4 | It efficiently handles projects of any size and offers an easy and intuitive interface. |
| 5 | (aside from the fact that it's written in [https://www.python.org Python]) |
| 6 | |
| 7 | == Usage |
| 8 | You need a shell account on [[Geidontei]] first, past that, you can use it like: |
| 9 | |
| 10 | {{{ |
| 11 | #!sh |
| 12 | cd public_hg |
| 13 | hg init repository |
| 14 | # for it to show it properly on the repository viewer |
| 15 | hg help config.web |
| 16 | # clone |
| 17 | hg clone $USER@s1.yakumo.dev:public_hg/repository |
| 18 | # push |
| 19 | hg push |
| 20 | }}} |