view Main.txt @ 6:3fbb1c1b9e89

Polishing
author Arne Babenhauserheide <bab@draketo.de>
date Sat, 07 Feb 2009 19:26:03 +0100
parents 63915af14173
children eea4049cfa38
line wrap: on
line source

Main page
=========

Mercurial is... 
---------------

Mercurial is a free, distributed source control management tool. It offers you the power to handle projects of any size along with a very intuitive interface. 

Every Mercurial clone is a full-fledged repository with complete history and full revision tracking capabilities, so it is independent of network access or a central server. Committing, branching and merging are fast and cheap. 

Mercurial is used for version control of files, much like tools such as Git, Bazaar, Subversion and CVS. It is available on many different platforms, including Microsoft Windows, Mac OS X, Linux, FreeBSD and OpenSolaris. 


Projects using Mercurial
------------------------


Get Mercurial
-------------

If you're using Windows, download TortoiseHG. ![TortoiseHG Logo]()

GNU/Linux: Just [get it from your package manager](link to a simple guide for the different distros). 

MacOSX: Download (app). 


Mercurial Quick start
---------------------

Cloning and Creating a Patch

$ hg clone http://bitbucket.org/ArneBab/hello_world
$ cd hello_world
$ (edit files)
$ hg add (new files)
$ hg commit -m 'My changes'
$ hg export > patch.diff

Creating and Commiting

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

Footer
------