Mercurial > hg-website
annotate hgscm/templates/workflow_guide.html @ 174:8bb9f5869602
Bitbucket asks for name + password, not only the password.
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Sat, 23 May 2009 12:25:26 +0200 |
parents | 2e205989c44d |
children | f73d4e6949bf |
rev | line source |
---|---|
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
1 {% extends "base.html" %} |
97 | 2 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
3 {% load extras %} |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
4 {% block content %} |
97 | 5 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
6 <div class="row"> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
7 <div class="col big"> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
8 |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
9 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
10 <h1>Learning Mercurial in Workflows</h1> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
11 |
171 | 12 <p>With Mercurial you can use a multitude of different workflows. This page shows some of them, including their use cases. It is intended to make it easy for beginners of version tracking to get going instantly and learn completely incrementally. It doesn't explain the concepts used, because there are already many other great resources doing that, for example <a title="Understanding Mercurial" href="http://www.selenic.com/mercurial/wiki/UnderstandingMercurial">the wiki</a> and <a title="Behind the Scenes" href="http://hgbook.red-bean.com/read/behind-the-scenes.html">the hgbook</a>.</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
13 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
14 <p>If you want a more exhaustive tutorial with the basics, please have a look at the <a title="Mercurial Tutorial" href="http://www.selenic.com/mercurial/wiki/Tutorial">Tutorial in the Mercurial Wiki</a>. For a really detailed and very nice to read description of Mercurial, please have a look at <a title="Mercurial: The definitive Guide" href="http://hgbook.red-bean.com/">Mercurial: The definitive Guide</a>.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
15 |
158 | 16 <p>Note: This guide doesn't require any prior knowledge of version control systems (though subversion users will likely feel at home quite quickly). Basic commandline abilities are helpful, because we'll use the commandline client. <!--If you already know other systems, please check our transition guides: svn, cvs, git, bzr --></p> |
157
1a294e9be015
learning in workflows: Added note: no vcs skill required, but commandline skills are useful.
Arne Babenhauserheide <bab@draketo.de>
parents:
156
diff
changeset
|
17 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
18 <h1>Basic workflows</h1> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
19 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
20 <h2>Log keeping</h2> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
21 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
22 <h3>Use Case</h3> |
101
7bcdd8b947fe
workflows: small fixes.
Arne Babenhauserheide <bab@draketo.de>
parents:
100
diff
changeset
|
23 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
24 <p>The first workflow is also the easiest one: You want to use Mercurial to be able to look back when you did which changes.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
25 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
26 <p>This workflow only requires an installed Mercurial and write access to some file storage (you almost definitely have that :) ). It shows the basic techniques for more complex workflows.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
27 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
28 <h3>Workflow</h3> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
29 |
163 | 30 <h5>Prepare Mercurial</h5> |
129
177b4120c26b
learning in workflows: Added info how to set the username.
Arne Babenhauserheide <bab@draketo.de>
parents:
128
diff
changeset
|
31 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
32 <p>As first step, you should teach Mercurial your name. For that you open the file ~/.hgrc with a text-editor and add the ui section (user interaction) with your username:</p> |
129
177b4120c26b
learning in workflows: Added info how to set the username.
Arne Babenhauserheide <bab@draketo.de>
parents:
128
diff
changeset
|
33 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
34 <pre>[ui] |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
35 username = Mr. Johnson <johnson@smith.com> |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
36 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
37 </pre> |
129
177b4120c26b
learning in workflows: Added info how to set the username.
Arne Babenhauserheide <bab@draketo.de>
parents:
128
diff
changeset
|
38 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
39 <h5>Initialize the project</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
40 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
41 <pre>$ hg init project |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
42 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
43 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
44 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
45 <h5>Add files and track them</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
46 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
47 <pre>$ cd project |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
48 $ (add files) |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
49 $ hg add |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
50 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
51 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
52 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
53 <p>Note: You can also go into an existing directory with files and init the repository there. </p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
54 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
55 <pre>$ cd project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
56 $ hg init |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
57 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
58 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
59 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
60 <p>Alternatively you can add only specific files instead of all files in the directory. Mercurial will then track only these files and won't know about the others. The following tells mercurial to track all files whose names begin with "file0" as well as file10, file11 and file12.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
61 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
62 <pre>$ hg add file0* file10 file11 file12 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
63 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
64 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
65 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
66 <h5>Save changes</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
67 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
68 <pre>$ (do some changes) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
69 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
70 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
71 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
72 <p>see which files changed, which have been added or removed, and which aren't tracked yet</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
73 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
74 <pre>$ hg status |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
75 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
76 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
77 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
78 <p>see the exact changes</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
79 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
80 <pre>$ hg diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
81 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
82 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
83 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
84 <p><hg>commit</hg> the changes.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
85 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
86 <pre>$ hg commit |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
87 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
88 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
89 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
90 <p>now an editor pops up and asks you for a commit message. Upon saving and closing the editor, your changes have been stored by Mercurial.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
91 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
92 <p>Note: You can also supply the commit message directly via <hg>hg commit -m 'MESSAGE'</hg>.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
93 |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
94 <h5>Move and copy files</h5> |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
95 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
96 <p>When you copy or move files, you should tell Mercurial to do the copy or move for you, so it can track the relationship between the files.</p> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
97 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
98 <p>Remember to <hg>commit</hg> after moving or copying. From the basic commands only <hg>commit</hg> creates a new revision</p> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
99 |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
100 <pre>$ hg cp original copy |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
101 $ hg commit |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
102 (enter the commit message) |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
103 $ hg mv original target |
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
104 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
105 (enter the commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
106 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
107 </pre> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
108 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
109 <p>Now you have two files, "copy" and "target", and Mercurial knows how they are related.</p> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
110 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
111 <p>Note: Should you forget to do the explicit copy or move, you can still tell Mercurial to detect the changes via <hg>hg addremove --similarity 100</hg>. Just use <hg>hg help addremove</hg> for details.</p> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
112 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
113 <h5>Check your history</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
114 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
115 <pre>$ hg log |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
116 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
117 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
118 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
119 <p>This prints a list of changesets along with their date, the user who committed them (you) and their commit message. </p> |
130
77b10482cc47
learning in workflows: How to see a specific patch.
Arne Babenhauserheide <bab@draketo.de>
parents:
129
diff
changeset
|
120 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
121 <p>To see a certain revision, you can use the <hg>-r</hg> switch (--revision). To also see the diff of the displayed revisions, there's the <hg>-p</hg> switch (--patch)</p> |
130
77b10482cc47
learning in workflows: How to see a specific patch.
Arne Babenhauserheide <bab@draketo.de>
parents:
129
diff
changeset
|
122 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
123 <pre>$ hg log -p -r 3 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
124 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
125 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
126 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
127 <h2>Lone developer with nonlinear history</h2> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
128 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
129 <h3>Use case</h3> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
130 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
131 <p>The second workflow is still very easy: You're a lone developer and you want to use Mercurial to keep track of your own changes.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
132 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
133 <p>It works just like the log keeping workflow, with the difference that you go back to earlied changes at times.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
134 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
135 <p>To start a new project, you initialize a repository, add your files and commit whenever you finished a part of your work.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
136 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
137 <p>Also you check your history from time to time, so see how you progressed.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
138 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
139 <h3>Workflow</h3> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
140 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
141 <h5>Basics from log keeping</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
142 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
143 <p>Init your project, add files, see changes and commit them.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
144 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
145 <pre>$ hg init project |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
146 $ cd project |
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
147 $ (add files) |
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
148 $ hg add # tell Mercurial to track all files |
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
149 $ (do some changes) |
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
150 $ hg diff # see changes |
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
151 $ hg commit # save changes |
152
1a01a60eeaf5
learning in workflows: Added mv and cp to the repeated basics in the Lone Dev workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
151
diff
changeset
|
152 $ hg cp # copy files or folders |
1a01a60eeaf5
learning in workflows: Added mv and cp to the repeated basics in the Lone Dev workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
151
diff
changeset
|
153 $ hg mv # move files or folders |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
154 $ hg log # see history |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
155 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
156 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
157 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
158 <h5>Seeing an earlier revision</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
159 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
160 <p>Different from the log keeping workflow, you'll want to go back in history at times and do some changes directly there, for example because an earlier change introduced a bug and you want to fix it where it occurred.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
161 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
162 <p>To look at a previous version of your code, you can use update. Let's assume that you want to see revision 3.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
163 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
164 <pre>$ hg update 3 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
165 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
166 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
167 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
168 <p>Now your code is back at revision 3, the fourth commit (Mercurial starts counting at 0). |
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
169 To check if you're really at that revision, you can use <hg>identify -n</hg>.</p> |
136
0364cfc00295
learning in workflows: Added identify and update to 'null'
Arne Babenhauserheide <bab@draketo.de>
parents:
135
diff
changeset
|
170 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
171 <pre>$ hg identify -n |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
172 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
173 </pre> |
136
0364cfc00295
learning in workflows: Added identify and update to 'null'
Arne Babenhauserheide <bab@draketo.de>
parents:
135
diff
changeset
|
174 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
175 <p>Note: <hg>identify</hg> without options gives you the short form of a unique revision ID. That ID is what Mercurial uses internally. If you tell someone about the version you updated to, you should use that ID, since the numbers can be different for other people. If you want to know the reasons behind that, please read up Mercurials [basic concepts](). When you're at the most recent revision, <hg>hg identify -n</hg> will return "-1".</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
176 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
177 <p>To update to the most recent revision, you can use "tip" as revision name.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
178 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
179 <pre>$ hg update tip |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
180 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
181 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
182 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
183 <p>Note: If at any place any command complains, your best bet is to read what it tells you and follow that advice.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
184 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
185 <p>Note: Instead of <hg>hg update</hg> you can also use the shorthand <hg>hg up</hg>. Similarly you can abbreviate <hg>hg commit</hg> to <hg>hg ci</hg>.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
186 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
187 <p>Note: To get a revision devoid of files, just <hg>update</hg> to "null" via <hg>hg update null</hg>. That's the revision before any files were added.</p> |
136
0364cfc00295
learning in workflows: Added identify and update to 'null'
Arne Babenhauserheide <bab@draketo.de>
parents:
135
diff
changeset
|
188 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
189 <h5>Fixing errors in earlier revisions</h5> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
190 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
191 <p>When you find a bug in some earlier revision you have two options: either you can fix it in the current code, or you can go back in history and fix the code exactly where you did it, which creates a cleaner history.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
192 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
193 <p>To do it the cleaner way, you first update to the old revision, fix the bug and commit it. Afterwards you merge this revision and commit the merge. Don't worry, though: Merging in mercurial is fast and painless, as you'll see in an instant.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
194 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
195 <p>Let's assume the bug was introduced in revision 3.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
196 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
197 <pre>$ hg update 3 |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
198 $ (fix the bug) |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
199 $ hg commit |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
200 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
201 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
202 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
203 <p>Now the fix is already stored in history. We just need to merge it with the current version of your code.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
204 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
205 <pre>$ hg merge |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
206 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
207 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
208 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
209 <p>If there are conflicts use <hg>hg resolve</hg> - that's also what merge tells you to do in case of conflicts.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
210 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
211 <p>First list the files with conflicts</p> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
212 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
213 <pre>$ hg resolve --list |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
214 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
215 </pre> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
216 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
217 <p>Then resolve them one by one. <hg>resolve</hg> attempts the merge again</p> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
218 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
219 <pre>$ hg resolve conflicting_file |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
220 (fix it by hand, if necessary) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
221 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
222 </pre> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
223 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
224 <p>Mark the fixed file as resolved</p> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
225 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
226 <pre>$ hg resolve --mark conflicting_file |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
227 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
228 </pre> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
229 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
230 <p>Commit the merge, as soon as you resolved all conflicts. This step is also necessary when there were no conflicts!</p> |
133
5e1cff189630
learning in workflows: Fix: Moved the resolve explanation to the first mention of resolve.
Arne Babenhauserheide <bab@draketo.de>
parents:
132
diff
changeset
|
231 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
232 <pre>$ hg commit |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
233 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
234 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
235 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
236 <p>At this point, your fix is merged with all your other work, and you can just go on coding. Additionally the history shows clearly where you fixed the bug, so you'll always be able to check where the bug was.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
237 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
238 <p>Note: Most merges will just work. You only need <hg>resolve</hg>, when <hg>merge</hg> complains.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
239 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
240 <p>So now you can initialize repositories, save changes, update to previous changes and develop in a nonlinear history by committing in earlier changesets and merging the changes into the current code.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
241 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
242 <p>Note: If you fix a bug in an earlier revision, and some later revision copied or moved that file, the fix will be propagated to the target file(s) when you merge. This is the main reason why you should always use <hg>hg cp</hg> and <hg>hg mv</hg>.</p> |
150
6d5a62a9821e
learning in workflows: Added section on explicit file copy and move.
Arne Babenhauserheide <bab@draketo.de>
parents:
149
diff
changeset
|
243 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
244 <h2>Seperate features</h2> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
245 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
246 <h3>Use Case</h3> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
247 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
248 <p>At times you'll be working on several features in parallel. If you want to avoid mixing incomplete code versions, you can create clones of your local repository and work on each feature in its own code directory.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
249 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
250 <p>After finishing your feature you then <hg>pull</hg> it back into your main directory and <hg>merge</hg> the changes.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
251 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
252 <h3>Workflow</h3> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
253 |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
254 <h5>Work in different clones</h5> |
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
255 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
256 <p>First create the feature clone and do some changes</p> |
132
a7fb926c69f6
learning in workflows: fixed soem typos and did some clarifications.
Arne Babenhauserheide <bab@draketo.de>
parents:
131
diff
changeset
|
257 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
258 <pre>$ hg clone project feature1 |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
259 $ cd feature1 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
260 $ (do some changes and commits) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
261 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
262 </pre> |
131
59b5985db58a
learning in workflows: added 'incoming'
Arne Babenhauserheide <bab@draketo.de>
parents:
130
diff
changeset
|
263 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
264 <p>Now check what will come in when you <hg>pull</hg> from feature1, just like you can use <hg>diff</hg> before committing. The respective command for pulling is <hg>incoming</hg></p> |
131
59b5985db58a
learning in workflows: added 'incoming'
Arne Babenhauserheide <bab@draketo.de>
parents:
130
diff
changeset
|
265 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
266 <pre>$ cd ../project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
267 $ hg incoming ../feature1 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
268 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
269 </pre> |
131
59b5985db58a
learning in workflows: added 'incoming'
Arne Babenhauserheide <bab@draketo.de>
parents:
130
diff
changeset
|
270 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
271 <p>Note: If you want to see the diffs, you can use <hg>hg incoming --patch</hg> just as you can do with <hg>hg log --patch</hg> for the changes in the repository.</p> |
131
59b5985db58a
learning in workflows: added 'incoming'
Arne Babenhauserheide <bab@draketo.de>
parents:
130
diff
changeset
|
272 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
273 <p>If you like the changes, you pull them into the project</p> |
131
59b5985db58a
learning in workflows: added 'incoming'
Arne Babenhauserheide <bab@draketo.de>
parents:
130
diff
changeset
|
274 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
275 <pre>$ hg pull ../feature1 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
276 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
277 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
278 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
279 <p>Now you have the history of feature1 inside your project, but the changes aren't yet visible. Instead they are only stored inside a ".hg" directory of the project (<a title="Behind the Scenes" href="http://hgbook.red-bean.com/read/behind-the-scenes.html">more information on the store</a>).</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
280 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
281 <p>Note: From now on we'll use the name "repository" for a directory which has a .hg directory with Mercurial history.</p> |
101
7bcdd8b947fe
workflows: small fixes.
Arne Babenhauserheide <bab@draketo.de>
parents:
100
diff
changeset
|
282 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
283 <p>If you didn't do any changes in the project, while you were working on feature1, you can just update to tip (<hg>hg update tip</hg>), but it is more likely that you'll have done some other changes in between changes. In that case, it's time for merging.</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
284 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
285 <p>Merge feature1 into the project code</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
286 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
287 <pre>$ hg merge |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
288 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
289 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
290 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
291 <p>If there are conflicts use <hg>hg resolve</hg> - that's also what merge tells you to do in case of conflicts. After you <hg>merge</hg>, you have to <hg>commit</hg> explicitely to make your <hg>merge</hg> final</p> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
292 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
293 <pre>$ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
294 (enter commit message, for example "merged feature1") |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
295 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
296 </pre> |
99
71ff3b94b20d
Added workflows sysadmin, lone developer and seperate features.
Arne Babenhauserheide <bab@draketo.de>
parents:
97
diff
changeset
|
297 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
298 <p>You can create an arbitrary number of clones and also carry them around on USB sticks. Also you can use them to synchronize your files at home and at work, or between your desktop and your laptop.</p> |
132
a7fb926c69f6
learning in workflows: fixed soem typos and did some clarifications.
Arne Babenhauserheide <bab@draketo.de>
parents:
131
diff
changeset
|
299 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
300 <p>Note: You also have to commit after a merge when there are no conflicts, because merging creates new history and you might want to attach a specific message to the merge (like "merge feature1").</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
301 |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
302 <h5>Rollback mistakes</h5> |
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
303 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
304 <p>Now you can work on different features in parallel, but from time to time a bad commit might sneak in. Naturally you could then just go back one revision and merge the stray error, keeping all mistakes out of the merged revision. However, there's an easier way, if you realize your error before you do another <hg>commit</hg> or <hg>pull</hg>: <hg>rollback</hg>.</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
305 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
306 <p>Rolling back means undoing the last operation which added something to your history.</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
307 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
308 <p>Imagine you just realized that you did a bad commit - for example you didn't see a spelling error in a label. To fix it you would use</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
309 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
310 <pre>hg rollback |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
311 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
312 </pre> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
313 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
314 <p>And then redo the commit</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
315 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
316 <pre>hg commit -m "message" |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
317 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
318 </pre> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
319 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
320 <p>If you can use the command history of your shell and you added the previous message via <hg>commit -m "message"</hg>, that following commit just means two clicks on the arrow-key "up" and one click on "enter".</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
321 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
322 <p>Though it changes your history, rolling back doesn't change your files. It only undoes the last addition to your history.</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
323 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
324 <p>But beware, that a rollback itself can't be undone. If you <hg>rollback</hg> and then forget to commit, you can't just say "give me my old commit back". You have to create a new commit.</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
325 |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
326 <p>Note: Rollback is possible, because Mercurial uses transactions when recording changes, and you can use the transaction record to undo the last transaction. This means that you can also use <hg>rollback</hg> to undo your last <hg>pull</hg>, if you didn't yet commit aything new.</p> |
160
bb60a4d6a1e3
learning in workflows: Added rollback to the feature clone workflow.
Arne Babenhauserheide <bab@draketo.de>
parents:
159
diff
changeset
|
327 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
328 <h2>Sharing changes</h2> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
329 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
330 <h3>Use Case</h3> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
331 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
332 <p>Now we go one step further: You are no longer alone, and you want to share your changes with others and include their changes.</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
333 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
334 <p>The basic requirement for that is that you have to be able to see the changes of others.</p> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
335 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
336 <p>Mercurial allows you to do that very easily by including a simple webserver from which you can <hg>pull</hg> changes just as you can pull changes from local clones.</p> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
337 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
338 <p>Note: There are a few other ways to share changes, though. Instead of using the builtin webserver, you can also send the changes by email or setup a shared repository, to where you <hg>push</hg> changes instead of pulling them. We'll cover one of those later.</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
339 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
340 <h3>Workflow</h3> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
341 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
342 <h5>Using the builtin webserver</h5> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
343 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
344 <p>This is the easiest way to quickly share changes.</p> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
345 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
346 <p>First the one who wants to share his changes creates the webserver</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
347 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
348 <pre>$ hg serve |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
349 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
350 </pre> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
351 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
352 <p>Now all others can point their browsers to his IP address (for example 192.168.178.100) at port 8000. They will then see all his history there and can sdecide if they want to pull his changes.</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
353 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
354 <pre>$ firefox http://192.168.178.100:8000 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
355 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
356 </pre> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
357 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
358 <p>If they decide to include the changes, they just pull from the same URL</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
359 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
360 <pre>$ hg pull http://192.168.178.100:8000 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
361 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
362 </pre> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
363 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
364 <p>At this point you all can work as if you had pulled from a local repository. All the data is now in your individual repositories and you can merge the changes and work with them without needing any connection to the served repository.</p> |
100
6e29cdea7b3a
Workflows: Added basic sharing of changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
99
diff
changeset
|
365 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
366 <h5>Sending changes by email</h5> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
367 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
368 <p>Often you won't have direct access to the repository of someone else, be it because he's behind a restrictive firewall, or because you live in different timezones. You might also want to keep your changes confidential and prefer internal email (if you want additional protection, you can also encrypt the emails, for example with <a href="http://gnupg.org" title="GnuPG">GnuPG</a>).</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
369 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
370 <p>In that case, you can easily export your changes as patches and send them by email.</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
371 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
372 <p>Another reason to send them by email can be that your policy requires manual review of the changes when the other developers are used to reading diffs in emails. I'm sure you can think of more reasons.</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
373 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
374 <p>Sending the changes via email is pretty straightforward with Mercurial. You just <hg>export</hg> your changes and attach (or copy paste) it in your email. Your collegues can then just <hg>import</hg> them.</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
375 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
376 <p>First check which changes you want to export</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
377 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
378 <pre>$ cd project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
379 $ hg log |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
380 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
381 </pre> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
382 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
383 <p>We assume that you want to export changeset 3 and 4</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
384 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
385 <pre>$ hg export 3 > change3.diff |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
386 $ hg export 4 > change4.diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
387 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
388 </pre> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
389 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
390 <p>Now attach them to an email and your collegues can just run <hg>import</hg> on both diffs to get your full changes, including your user information.</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
391 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
392 <p>To be careful, they first <hg>clone</hg> their repository to have an integration directory as sandbox</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
393 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
394 <pre>$ hg clone project integration |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
395 $ cd integration |
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
396 $ hg import change3.diff |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
397 $ hg import change4.diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
398 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
399 </pre> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
400 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
401 <p>That's it. They can now test your changes in feature clones. If they accept them, they <hg>pull</hg> the changes into the main repository</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
402 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
403 <pre>$ cd ../project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
404 $ hg pull ../integration |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
405 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
406 </pre> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
407 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
408 <p>Note: The <em>patchbomb</em> extension automates the email-sending, but you don't need it for this workflow.</p> |
108
ed683ad3947f
learning in workflows: Send changes by email.
Arne Babenhauserheide <bab@draketo.de>
parents:
107
diff
changeset
|
409 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
410 <p>Note 2: You can also send around bundles, which are snippets of your actual history. Just create them via </p> |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
411 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
412 <pre>$ hg bundle --base FIRST_REVISION_TO_BUNDLE changes.bundle |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
413 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
414 </pre> |
167
af506d1a935d
workflow_guide: added some missing <p> tags.
Arne Babenhauserheide <bab@draketo.de>
parents:
166
diff
changeset
|
415 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
416 <p>Others can then get your changes by simply pulling them, as if your bundle were an actual repository</p> |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
417 <pre>$ hg pull path/to/changes.bundle |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
418 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
419 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
420 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
421 <h5>Using a shared repository</h5> |
104
03591004ed44
workflows: Added plan for sharing via email and via shared repo (bitbucket).
Arne Babenhauserheide <bab@draketo.de>
parents:
103
diff
changeset
|
422 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
423 <p>Sending changes by email might be the easiest way to reach people when you aren't yet part of the regular development team, but it creates additional workload: You have to <hg>bundle</hg> the changes, send mails and then <hg>import</hg> the bundles manually. Luckily there's an easier way which works quite well: The shared push repository.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
424 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
425 <p>Till now we transferred all changes either via email or via <hg>pull</hg>. Now we use another otion: pushing. As the name suggests it's just the opposite of pulling: You <hg>push</hg> your changes into another repository.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
426 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
427 <p>But to make use of it, we first need something we can push to.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
428 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
429 <p>By default <hg>hg serve</hg> doesn't allow pushing, since that would be a major security hole. You can allow pushing in the server, but that's no solution when you live in different timezones, so we'll go with another approach here: Using a shared repository, either on an existing shared server or on a service like <a title="BitBucket" href="http://bitbucket.org">BitBucket</a>. Doing so has a bit higher starting cost and takes a bit longer to explain, but it's well worth the effort spent.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
430 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
431 <p>If you want to use an existing shared server, you can use <hg>serve</hg> there and <a title="How to allow pushing for hg serve" href="http://www.selenic.com/mercurial/wiki/HgWebDirStepByStep#head-746ca383e3a62df34279ec2fca888113497da022">allow pushing</a>. Also there are some other nice ways to <a title="Multiple Committers" href="http://www.selenic.com/mercurial/wiki/MultipleCommitters">allow pushing to a Mercurial repository</a>, including simple <a title="Setting up a shared Mercurial repository using SSH" href="http://www.selenic.com/mercurial/wiki/SharedSSH">access via SSH</a>.</p> |
135
8d069bba8cce
learning in workflows: shared server now contains a bit more information for people with existing servers.
Arne Babenhauserheide <bab@draketo.de>
parents:
134
diff
changeset
|
432 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
433 <p>Otherwise you first need to setup a BitBucket Account. Just signup at <a title="BitBucket" href="http://bitbucket.org">BitBucket</a>. After signing up (and login) hover your mouse over "Repositories". There click the item at the bottom of the opening dialog which say "Create new".</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
434 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
435 <p>Give it a name and a description. If you want to keep it hidden from the public, select "private"</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
436 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
437 <pre>$ firefox http://bitbucket.org |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
438 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
439 </pre> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
440 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
441 <p>Now your repository is created and you see instructions for <hg>push</hg>ing to it. for that you'll use a command similar to the following (just with a different URL)</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
442 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
443 <pre>$ hg push https://bitbucket.org/ArneBab/hello/ |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
444 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
445 </pre> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
446 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
447 <p>(Replace the URL with the URL of your created repository. If your username is "Foo" and your repository is named "bar", the URL will be https://bitbucket.org/Foo/bar/)</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
448 |
174
8bb9f5869602
Bitbucket asks for name + password, not only the password.
Arne Babenhauserheide <bab@draketo.de>
parents:
171
diff
changeset
|
449 <p>Mercurial will ask for your BitBucket name and password, then <hg>push</hg> your code.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
450 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
451 <p>Voilà , your code is online.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
452 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
453 <p>Note: You can also <a title="use SSH for pushing to BitBucket" href="http://bitbucket.org/help/UsingSSH">use SSH for pushing to BitBucket</a>.</p> |
135
8d069bba8cce
learning in workflows: shared server now contains a bit more information for people with existing servers.
Arne Babenhauserheide <bab@draketo.de>
parents:
134
diff
changeset
|
454 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
455 <p>Now it's time to tell all your collegues to sign up at BitBucket, too.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
456 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
457 <p>After that you can click the "Admin" tab of your created repository and add the usernames of your collegues on the right side under "Permission: Writers". Now they are allowed to <hg>push</hg> code to the repository.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
458 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
459 <p>(If you chose to make the repository private, you'll need to add them to "Permission: Readers", too)</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
460 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
461 <p>If one of you now wants to publish changes, he'll simply <hg>push</hg> them to the repository, and all others get them by <hg>pull</hg>ing.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
462 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
463 <p>Publish your changes</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
464 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
465 <pre>$ hg push https://bitbucket.org/ArneBab/hello/ |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
466 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
467 </pre> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
468 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
469 <p>Pull others changes into your local repository</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
470 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
471 <pre>$ hg pull https://bitbucket.org/ArneBab/hello/ |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
472 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
473 </pre> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
474 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
475 <p>People who join you in development can also just <hg>clone</hg> this repository, as if one of you were using <hg>hg serve</hg></p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
476 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
477 <pre>$ hg clone https://bitbucket.org/ArneBab/hello/ hello |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
478 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
479 </pre> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
480 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
481 <p>That local repository will automatically be configured to pull/push from/to the online repository, so new contributors can just use <hg>hg push</hg> and <hg>hg pull</hg> without an URL.</p> |
110
8c8c8aaaaad7
learning in workflows: added sharing changes.
Arne Babenhauserheide <bab@draketo.de>
parents:
108
diff
changeset
|
482 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
483 <p>Note: To make this workflow more scaleable, each one of you can have his own BitBucket repository and you can simply <hg>pull</hg> from the others repositories. That way you can easily establish workflows in which certain people act as integrators and finally <hg>push</hg> checked code to a shared pull repository from which all others pull.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
484 |
159
83970c19b495
switched ssh repo url to user@example.com/path/ro/repo
Arne Babenhauserheide <bab@draketo.de>
parents:
158
diff
changeset
|
485 <p>Note: You can also use this workflow with a shared server instead of BitBucket, either via SSH or via a shared directory. An example for an SSH URL with Mercurial is be ssh://user@example.com/path/to/repo. When using a shared directory you just push as if the repository in the shared directory were on your local drive.</p> |
141
cf102ae37ad9
Added a note about using shared servers instead of bitbucket.org
Arne Babenhauserheide <bab@draketo.de>
parents:
140
diff
changeset
|
486 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
487 <h2>Summary</h2> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
488 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
489 <p>Now let's take a step back and look where we are.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
490 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
491 <p>With the commands you already know, a bit reading of <hg>hg help <command></hg> and some evil script-fu you can already do almost everything you'll ever need to do when working with source code history. So from now on almost everything is convenience, and that's a good thing.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
492 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
493 <p>First this is good, because it means, that you can now use most of the concepts which are utilized in more complex workflows.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
494 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
495 <p>Second it aids you, because convenience lets you focus on your task instead of focussing on your tool. It helps you concentrate on the coding itself. Still you can always go back to the basics, if you want to.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
496 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
497 <p>A short summary of what you can do which can also act as a short check, if you still remember the meaning of the commands.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
498 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
499 <h3>create a project</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
500 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
501 <pre>$ hg init project |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
502 $ cd project |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
503 $ (add some files) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
504 $ hg add |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
505 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
506 (enter the commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
507 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
508 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
509 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
510 <h3>do nonlinear development</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
511 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
512 <pre>$ (do some changes) |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
513 $ hg commit |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
514 (enter the commit message) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
515 $ hg update 0 |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
516 $ (do some changes) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
517 $ hg commit |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
518 (enter the commit message) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
519 $ hg merge |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
520 $ (optionally hg resolve) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
521 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
522 (enter the commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
523 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
524 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
525 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
526 <h3>use feature clones</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
527 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
528 <pre>$ cd .. |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
529 $ hg clone project feature1 |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
530 $ cd feature1 |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
531 $ (do some changes) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
532 $ hg commit |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
533 (enter the commit message) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
534 $ cd ../project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
535 $ hg pull ../feature1 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
536 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
537 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
538 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
539 <h3>share your repository via the integrated webserver</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
540 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
541 <pre>$ hg serve & |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
542 $ cd .. |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
543 $ hg clone http://127.0.0.1:8000 project-clone |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
544 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
545 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
546 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
547 <h3>export changes to files</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
548 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
549 <pre>$ cd project-clone |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
550 $ (do some changes) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
551 $ hg commit |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
552 (enter the commit message) |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
553 $ hg export tip > ../changes.diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
554 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
555 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
556 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
557 <h3>import changes from files</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
558 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
559 <pre>$ cd ../project |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
560 $ hg import ../changes.diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
561 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
562 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
563 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
564 <h3>pull changes from a served repository (hg serve still runs on project)</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
565 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
566 <pre>$ cd ../feature1 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
567 $ hg pull http://127.0.0.1:8000 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
568 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
569 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
570 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
571 <h3>Use shared repositories on BitBucket</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
572 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
573 <pre>$ (setup bitbucket repo) |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
574 $ hg push https://bitbucket.org/USER/REPO |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
575 (enter name and password in the prompt) |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
576 $ hg pull https://bitbucket.org/USER/REPO |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
577 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
578 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
579 |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
580 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
581 <p>Let's move on towards useful features and a bit more advanced workflows.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
582 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
583 <h2>Backing out bad revisions</h2> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
584 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
585 <h3>Use Case</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
586 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
587 <p>When you routinely pull code from others, it can happen that you overlook some bad change. As soon as others pull that change from you, you have little chance to get completely rid of it.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
588 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
589 <p>To resolve that problem, Mercurial offers you the <hg>backout</hg> command. Backing out a change means, that you tell Mercurial to create a commit which reverses the bad change. That way you don't get rid of the bad code in history, but you can remove it from new revisions.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
590 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
591 <p>Note: The basic commands don't directly rewrite history. If you want to do that, you need to activate some of the extensions which are shipped with mercurial. We'll come to that later on.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
592 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
593 <h3>Workflow</h3> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
594 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
595 <p>Let's assume the bad change was revision 3, and we already have one more revision in our repository. To remove the bad code, we just <hg>backout</hg> of it. This creates a new change which reverses the bad change. After backing out, we merge that new change into the current code.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
596 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
597 <pre>$ hg backout 3 |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
598 $ hg merge |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
599 (potentially resolve conflicts) |
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
600 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
601 (enter commit message. For example: "merged backout") |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
602 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
603 </pre> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
604 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
605 <p>That's it. You reversed the bad change. It's still recorded that it was once there (following the principle "don't rewrite history, if it's not really necessary"), but it doesn't affect future code anymore.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
606 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
607 <h2>Collaborative feature development</h2> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
608 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
609 <p>Now that you can share changes and reverse them if necessary, you can go one step further: Using Mercurial to help in coordinating the coding.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
610 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
611 <p>The first part is an easy way to develop features together, without requiring every developer to keep track of several feature clones.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
612 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
613 <h3>Use Case</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
614 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
615 <p>When you want to split your development into several features, you need to keep track of who works on which feature and where to get which changes.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
616 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
617 <p>Mercurial makes this easy for you by providing named branches. They are a part of the main repository, so they are available to everyone involved. At the same time, changes committed on a certain branch don't get mixed with the changes in the default branch, so features are kept separate, until they get merged into the default branch.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
618 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
619 <p>Note: Cloning a repository always puts you onto the default branch at first.</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
620 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
621 <h3>Workflow</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
622 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
623 <p>When someone in your group wants to start coding on a feature without disturbing the others, he can create a named branch and commit there. When someone else wants to join in, he just updates to the branch and commits away. As soon as the feature is finished, someone merges the named branch into the default branch.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
624 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
625 <h5>Working in a named branch</h5> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
626 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
627 <p>Create the branch</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
628 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
629 <pre>$ hg branch feature1 |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
630 (do some changes) |
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
631 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
632 (write commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
633 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
634 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
635 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
636 <p>Update into the branch and work in it</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
637 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
638 <pre>$ hg update feature1 |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
639 (do some changes) |
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
640 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
641 (write commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
642 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
643 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
644 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
645 <p>Now you can <hg>commit</hg>, <hg>pull</hg>, <hg>push</hg> and <hg>merge</hg> (and anything else) as if you were working in a separate repository. If the history of the named branch is linear and you call "hg merge", Mercurial asks you to specify an explicit revision, since the branch in which you work doesn't have anything to merge.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
646 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
647 <h5>Merge the named branch</h5> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
648 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
649 <p>When you finished the feature, you <hg>merge</hg> the branch back into the default branch.</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
650 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
651 <pre>$ hg update default |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
652 $ hg merge feature1 |
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
653 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
654 (write commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
655 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
656 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
657 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
658 <p>And that's it. Now you can easily keep features separate without unnecessary bookkeeping.</p> |
132
a7fb926c69f6
learning in workflows: fixed soem typos and did some clarifications.
Arne Babenhauserheide <bab@draketo.de>
parents:
131
diff
changeset
|
659 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
660 <p>Note: Named branches stay in history as permanent record after you finished your work. If you don't like having that record in your history, please have a look at some of the advanced <a title="Mercurial Workflows" href="http://www.selenic.com/mercurial/wiki/Workflows">workflows</a>.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
661 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
662 <h2>Tagging revisions</h2> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
663 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
664 <h3>Use Case</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
665 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
666 <p>Since you can now code separate features more easily, you might want to mark certain revisions as fit for consumption (or similar). For example you might want to mark releases, or just mark off revisions as reviewed.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
667 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
668 <p>For this Mercurial offers tags. Tags add a name to a revision and are part of the history. You can tag a change years after it was committed. The tag includes the information when it was added, and tags can be pulled, pushed and merged just like any other committed change.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
669 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
670 <p>Note: A tag must not contain the char ":", since that char is used for specifying multiple reivions - see "hg help revisions".</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
671 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
672 <p>Note: To securely mark a revision, you can use the <a title="Using GnuPG to securely sign revisions in Mercurial" href="http://www.selenic.com/mercurial/wiki/GpgExtension">gpg extension</a> to sign the tag.</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
673 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
674 <h3>Workflow</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
675 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
676 <p>Let's assume you want to give revision 3 the name "v0.1".</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
677 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
678 <p>Add the tag</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
679 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
680 <pre>$ hg tag -r 3 v0.1 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
681 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
682 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
683 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
684 <p>See all tags</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
685 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
686 <pre>$ hg tags |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
687 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
688 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
689 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
690 <p>When you look at the log you'll now see a line in changeset 3 which marks the Tag. If someone wants to <hg>update</hg> to the tagged revision, he can just use the name of your tag</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
691 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
692 <pre>$ hg update v0.1 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
693 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
694 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
695 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
696 <p>Now he'll be at the tagged revision and can work from there.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
697 |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
698 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
699 <h2>Removing history</h2> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
700 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
701 <h3>Use Case</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
702 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
703 <p>At times you will have changes in your repository, which you really don't want in it.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
704 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
705 <p>There are many advanced options for removing these, and most of them use great extensions (<a title="Mercurial Queues Extension" href="http://www.selenic.com/mercurial/wiki/MqExtension">Mercurial Queues</a> is the most often used one), but in this basic guide, we'll solve the problem with just the commands we already learned. But we'll use an option to clone which we didn't yet use.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
706 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
707 <p>This workflow becomes inconvenient when you need to remove changes, which are buried below many new changes. If you spot the bad changes early enough, you can get rid of them without too much effort, though.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
708 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
709 <h3>Workflow</h3> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
710 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
711 <p>Let's assume you want to get rid of revision 2 and the highest revision is 3.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
712 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
713 <p>The first step is to use the "--rev" option to <hg>clone</hg>: Create a clone which only contains the changes up to the specified revision. Since you want to keep revision 1, you only clone up to that</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
714 |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
715 <pre>$ hg clone -r 1 project stripped |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
716 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
717 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
718 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
719 <p>Now you can <hg>export</hg> the change 3 from the original repository (project) and <hg>import</hg> it into the stripped one</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
720 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
721 <pre>$ cd project |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
722 $ hg export 3 > ../changes.diff |
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
723 $ cd ../stripped |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
724 $ hg import ../changes.diff |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
725 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
726 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
727 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
728 <p>If a part of the changes couldn't be applied, you'll see that part in *.rej files. If you have *.rej files, you'll have to include or discard changes by hand</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
729 |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
730 <pre>$ cat *.rej |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
731 (apply changes by hand) |
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
732 $ hg commit |
166
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
733 (write commit message) |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
734 |
6358437dccf2
worgflow_guide: add an empty line after each code part.
Arne Babenhauserheide <bab@draketo.de>
parents:
165
diff
changeset
|
735 </pre> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
736 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
737 <p>That's it. <hg>hg export</hg> also includes the commit message, date, committer and similar metadata, so you are already done.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
738 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
739 <p>Note: removing history will change the revision IDs of revisions after the removed one, and if you pull from someone else who still has the revision you removed, you will pull the removed parts again. That's why rewriting history should most times only be done for changes which you didn't yet publicise.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
740 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
741 <h2>Summary</h2> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
742 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
743 <p>So now you can work with Mercurial in private, and also share your changes in a multitude of ways.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
744 |
168 | 745 <p>Additionally you can remove bad changes, either by creating a change in the repository which reverses the original change, or by really rewriting history, so it looks like the change never occured.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
746 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
747 <p>And you can separate the work on features in a single repository by using named branches and add tags to revisions which are visible markers for others and can be used to update to the tagged revisions.</p> |
124
0bee8982f334
learning in workflows mostly finished - I hope :) .
Arne Babenhauserheide <bab@draketo.de>
parents:
115
diff
changeset
|
748 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
749 <p>With this we can conclude our practical guide.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
750 |
164
99bfbce775b0
workflow guide: use <h1>, <h2>, h3> and <h5> in the guide (<h4> doesn't really show)
Arne Babenhauserheide <bab@draketo.de>
parents:
163
diff
changeset
|
751 <h1>More Complex Workflows</h1> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
752 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
753 <p>If you now want to check some more complex workflows, please have a look at the general <a title="Mercurial Workflows" href="http://selenic.com/mercurial/wiki/Workflows">workflows wikipage</a>.</p> |
139
2fcd14a3b9f9
learning in workflows: Added a link to the (not yet written) basic concept overview for understanding.
Arne Babenhauserheide <bab@draketo.de>
parents:
138
diff
changeset
|
754 |
155
5451a67b896f
learning in workflows: Manually added linebreaks (<p> tags) and took the chance to do some more polishing.
Arne Babenhauserheide <bab@draketo.de>
parents:
154
diff
changeset
|
755 <p>To deepen your understanding, you should also check the <a title="Overview of the basic concepts of Mercurial" href="quick_start_concepts">basic concept overview</a>.</p> |
111
8b51ceb2d36b
learning in workflows: Added backout.
Arne Babenhauserheide <bab@draketo.de>
parents:
110
diff
changeset
|
756 |
156
bc05b688ac06
minor fix: no italics fo final 'Have fun'.
Arne Babenhauserheide <bab@draketo.de>
parents:
155
diff
changeset
|
757 <p>Have fun with Mercurial!</p> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
758 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
759 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
760 |
165
4b997b34c671
FIX: workflow_guide had the download button at the bottom.
Arne Babenhauserheide <bab@draketo.de>
parents:
164
diff
changeset
|
761 </div> |
143
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
762 <div class="col"> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
763 {% download_button %} |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
764 {% mercurial_tricks %} |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
765 </div> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
766 </div> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
767 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
768 </div> |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
769 |
fc5a9f3e5479
Converted the workflow guide into html, added links and polished it.
Arne Babenhauserheide <bab@draketo.de>
parents:
141
diff
changeset
|
770 {% endblock %} |