白驹过隙,这篇文章距今已有一年以上的历史。技术发展日新月异,文中的观点或代码很可能过时或失效,请自行甄别:)

安装

sudo apt-get install hg

初始化

hg init

添加

hg add xxx file(xxx file)

提交

hg commit -m 'some messages'

从已有仓库克隆

hg clone xxxx

查看仓库详情

hg summary

查看仓库历史

hg log
hg log -v          // get more detail about logs
hg log --debug     // get more detail about logs
hg log -rx         //查看第x个版本历史
hg log -r tip  //equal to hg tip
hg parent //类似与git的git head

提交到远程仓库

hg push

从远端仓库pull

hg pull