发布时间:2011-4-10 18:09
分类名称:Version control
相对SVN,它是一种分布式的版本控制系统。与它类似的还有Git等。mozilla使用的就是mercurial。
官网:http://mercurial.selenic.com/
帮助文档:
《Mercurial: The Definitive Guide 》by Bryan O'Sullivan http://hgbook.red-bean.com/
Learning Mercurial in Workflows http://mercurial.selenic.com/guide/
Learn Mercurial http://mercurial.selenic.com/learn/
Quick Start http://mercurial.selenic.com/quickstart/
Quick Start
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'