comparison Main.txt @ 11:66f237705694

Started with adapting the Main.txt to the design.
author Arne Babenhauserheide <bab@draketo.de>
date Mon, 09 Feb 2009 13:54:07 +0100
parents e1520f56951c
children f75b80086a75
comparison
equal deleted inserted replaced
10:e1520f56951c 11:66f237705694
23 * [Open Solaris](http://hg.genunix.org/) 23 * [Open Solaris](http://hg.genunix.org/)
24 24
25 [and many more](http://www.selenic.com/mercurial/wiki/index.cgi/ProjectsUsingMercurial) 25 [and many more](http://www.selenic.com/mercurial/wiki/index.cgi/ProjectsUsingMercurial)
26 26
27 27
28 How you can benefit from using Mercurial
29 ----------------------------------------
30
31 ### Power and speed
32 Mercurial offers you the power to efficiently handle projects of any size and kind.
33
34 ### Ease of use
35 >No longer stumble over your tool.< >makes it easy to experiment with workflows without fear<
36
37 ### Extensibility
38 ><
39
28 Get Mercurial 40 Get Mercurial
29 ------------- 41 -------------
30 42
31 If you're using Windows, download TortoiseHG for full Explorer integration. ![TortoiseHG Logo]() 43 If you're using Windows, download TortoiseHG for full Explorer integration. ![TortoiseHG Logo]()
32 44
33 GNU/Linux: Just [get it from your package manager](link to a simple guide for the different distros). 45 GNU/Linux: Just [get it from your package manager](link to a simple guide for the different distros).
34 46
35 MacOSX: Download (app). 47 MacOSX: Download (app).
36 48
49 -> A "news" link should be alongside the version. -
37 50
38 Mercurial Quick start 51
52 Mercurial Quick Start
39 --------------------- 53 ---------------------
40 54
41 Cloning and Creating a Patch 55 Clone a project and create a patch
42 56
43 $ hg clone http://bitbucket.org/ArneBab/hello_world 57 $ hg clone http://bitbucket.org/ArneBab/hello_world
44 $ cd hello_world 58 $ cd hello_world
45 $ (edit files) 59 $ (edit files)
46 $ hg add (new files) 60 $ hg add (new files)
47 $ hg commit -m 'My changes' 61 $ hg commit -m 'My changes'
48 $ hg export > patch.diff 62 $ hg export > patch.diff
49 63
50 Creating and Commiting 64 Create a project and commit
51 65
52 $ hg init (project-directory) 66 $ hg init (project-directory)
53 $ (add some files) 67 $ (add some files)
54 $ hg add 68 $ hg add
55 $ hg commit -m 'Initial commit' 69 $ hg commit -m 'Initial commit'
56 70
71 -> [Workflows]()
72
73 (maybe instead of "Take a look"; it would be great to be able to detect the OS of the visitor and show Windows users TortoiseHG while showing MacOSX and GNU/Linux users the Quick Start)
74
57 75
58 Footer 76 Footer
59 ------ 77 ------
60 78