Changes between Initial Version and Version 1 of Mercurial


Ignore:
Timestamp:
Apr 17, 2025, 2:14:25 AM (10 days ago)
Author:
Izuru Yakumo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Mercurial

    v1 v1  
     1
     2== Mercurial
     3[https://mercurial-scm.org Mercurial] is a free, distributed source control management tool.
     4It 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
     8You need a shell account on [[Geidontei]] first, past that, you can use it like:
     9
     10{{{
     11#!sh
     12cd public_hg
     13hg init repository
     14# for it to show it properly on the repository viewer
     15hg help config.web
     16# clone
     17hg clone $USER@s1.yakumo.dev:public_hg/repository
     18# push
     19hg push
     20}}}