====== HG - Mercurial ======

===== Основные команды =====

==== Clone a project and push changes ====

  $ hg clone http://selenic.com/repo/hello
  $ cd hello
  $ (edit files)
  $ hg add (new files)
  $ hg commit -m 'My changes'
  $ hg push
  
==== Create a project and commit ====

  $ hg init (project-directory)
  $ cd (project-directory)
  $ (add some files)
  $ hg add
  $ hg commit -m 'Initial commit'
