/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4634.38.1 by Ian Clatworthy
first cut at pdf docs via sphinx
1
=============================
2
Centralized Workflow Tutorial
3
=============================
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
4
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
5
6
Overview
7
========
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
8
9
This document describes a possible workflow for using Bazaar_. That of
10
using Bazaar_, the distributed version control system, in a centralized
11
manner. Bazaar_ is designed to be very flexible and allows several
12
different workflows, from fully decentralized to mostly centralized.  The
13
workflow used here is meant to ease a new user into more advanced usage of
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
14
Bazaar_, and allow them to work in a mix of centralized and decentralized
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
15
operations.
16
17
In general, this document is meant for users coming from a background of
18
centralized version control systems such as CVS or subversion. It is
19
common in work settings to have a single central server hosting the
20
codebase, with several people working on this codebase, keeping their work
21
in sync.  This workflow is also applicable to a single developer working
22
on several different machines.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
23
24
.. _Bazaar: http://bazaar-vcs.org
25
26
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
27
Initial Setup
28
=============
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
29
30
These are some reasonably simple steps to setup Bazaar_ so that it works
31
well for you.
32
33
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
34
Setting User Email
35
------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
36
37
Your user identity is stored with each commit. While this doesn't have to
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
38
be accurate or unique, it will be used in log messages and
39
annotations, so it is better to have something real.
40
41
::  
42
43
   % bzr whoami "John Doe <jdoe@organization.com>"
44
45
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
46
Setting up a local Repository
47
-----------------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
48
49
Bazaar_ branches generally copy the history information around with them,
50
which is part of how you can work in a fully decentralized manner. As an
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
51
optimization, it is possible for related branches to combine their storage
52
needs so that you do not need to copy around all of this history
53
information whenever you create a new branch.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
54
2293.1.6 by Brad Crittenden
post review changes
55
The best way to do this is to create a `Shared Repository`_. In
56
general, branches will share their storage if they exist in a
57
subdirectory of a `Shared Repository`_.  So let's set up a `Shared
58
Repository`_ in our home directory, thus all branches we create
59
underneath will share their history storage.
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
60
61
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
62
63
  % bzr init-repo --trees ~
64
65
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
66
Setting up a remote Repository
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
67
---------------------------------
68
69
Many times you want a location where data is stored separately from where
70
you do your work. This workflow is required by centralized systems
71
(CVS/SVN).  Usually they are on separate machines, but not always. This is
72
actually a pretty good setup, especially in a work environment. Since it
73
ensures a central location where data can be backed up, and means that if
74
something happens to a developer's machine, no committed work has to be
75
lost.
76
77
So let's set up a shared location for our project on a remote machine
78
called ``centralhost``. Again, we will use a
79
`Shared Repository`_ to optimize disk usage.
80
81
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
82
83
  % bzr init-repo --no-trees sftp://centralhost/srv/bzr/
84
85
You can think of this step as similar to setting up a new cvsroot, or
4782.3.1 by Neil Martinsen-Burrell
fix some markup
86
subversion repository.  The ``--no-trees`` option tells bzr to not
2293.1.6 by Brad Crittenden
post review changes
87
populate the directory with a working tree.  This is appropriate,
88
since no one will be making changes directly in the branches within
89
the central repository.
90
91
92
Migrating an existing project to Bazaar
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
93
=======================================
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
94
95
Now that we have a repository, let's create a versioned project. Most of
96
the time, you will already have some code that you are working with,
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
97
that you now want to version using Bazaar_. If the code was originally
2293.1.6 by Brad Crittenden
post review changes
98
in source control, there are many ways to convert the project to Bazaar_
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
99
without losing any history. However, this is outside the scope of this
100
document. See `Tracking Upstream`_ for some possibilities (section
101
"Converting and keeping history").
102
103
.. _Tracking Upstream: http://bazaar-vcs.org/TrackingUpstream
104
105
.. 
106
   XXX: We really need a different document for discussing conversion of a
107
   project. Right now TrackingUpstream is the best we have, though.
108
109
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
110
Developer 1: Creating the first revision
111
----------------------------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
112
113
So first, we want to create a branch in our remote Repository, where we
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
114
want to host the project.  Let's assume we have a project named
115
"sigil" that we want to put under version control.
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
116
117
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
118
119
  % bzr init sftp://centralhost/srv/bzr/sigil
120
121
This can be thought of as the "HEAD" branch in CVS terms, or as the "trunk"
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
122
in Subversion terms. We will call this the ``dev`` branch.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
123
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
124
I prefer working in a subdirectory of my home directory to avoid collisions with all
125
the other files that end up there. Also, we will want a project
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
126
directory where we can hold all of the different branches we end up
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
127
working on.
128
129
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
130
131
  % cd ~
132
  % mkdir work
133
  % cd work
134
  % mkdir sigil
135
  % cd sigil
136
  % bzr checkout sftp://centralhost/srv/bzr/sigil dev
137
  % cd dev
138
  % cp -ar ~/sigil/* .
139
  % bzr add
140
  % bzr commit -m "Initial import of Sigil"
141
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
142
2293.1.6 by Brad Crittenden
post review changes
143
In the previous section, we created an empty branch (the ``/sigil``
144
branch) on ``centralhost``, and then checkout out this empty branch
145
onto our workstation to add files from our existing project.  There
146
are many ways to set up your working directory, but the steps above
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
147
make it easy to handle working with feature/bugfix branches. And one
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
148
of the strong points of Bazaar_ is how well it works with branches.
149
150
At this point, because you have a 'checkout' of the remote branch, any
2293.1.6 by Brad Crittenden
post review changes
151
commits you make in ``~/work/sigil/dev/`` will automatically be saved
152
both locally, and on ``centralhost``.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
153
154
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
155
Developer N: Getting a working copy of the project
156
--------------------------------------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
157
158
Since the first developer did all of the work of creating the project,
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
159
all other developers would just checkout that branch. **They should
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
160
still follow** `Setting User Email`_ and `Setting up a local Repository`_.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
161
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
162
To get a copy of the current development tree::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
163
164
  % cd ~/work/sigil
165
  % bzr checkout sftp://centralhost/srv/bzr/sigil dev
166
167
Now that two people both have a checkout of
168
``sftp://centralhost/srv/bzr/sigil``, there will be times when one of
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
169
the checkouts will be out of date with the current version.
170
At commit time, Bazaar_ will inform the user of this and prevent them from
171
committing. To get up to date, use ``bzr update`` to update the
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
172
tree with the remote changes. This may require resolving conflicts if the
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
173
same files have been modified.
174
175
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
176
Developing on separate branches
177
===============================
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
178
179
So far everyone is working and committing their changes into the same
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
180
branch. This means that everyone needs to update fairly regularly and
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
181
deal with other people's changes. Also, if one person commits something
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
182
that breaks the codebase, then upon syncing, everyone will get the
183
problem.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
184
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
185
Usually, it is better to do development on different branches, and then
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
186
integrate those back into the main branch, once they are stable. This is
187
one of the biggest changes from working with CVS/SVN. They both allow you
188
to work on separate branches, but their merging algorithms are fairly
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
189
weak, so it is difficult to keep things synchronized. Bazaar_ tracks
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
190
what has already been merged, and can even apply changes to files that
191
have been renamed.
192
193
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
194
Creating and working on a new branch
195
------------------------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
196
197
We want to keep our changes available for other people, even if they
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
198
aren't quite complete yet. So we will create a new public branch on
199
``centralhost``, and track it locally.
200
201
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
202
203
  % cd ~/work/sigil
204
  % bzr branch sftp://centralhost/srv/bzr/sigil \
205
               sftp://centralhost/srv/bzr/sigil/doodle-fixes
206
  % bzr checkout sftp://centralhost/srv/bzr/sigil/doodle-fixes doodle-fixes
207
  % cd doodle-fixes
208
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
209
We now have a place to make any fixes we need to ``doodle``. And we would
210
not interrupt people who are working on other parts of the code.  Because
211
we have a checkout, any commits made in the ``~/work/sigil/doodle-fixes/``
212
will also show up on ``centralhost``. [#nestedbranches]_ It is also
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
213
possible to have two developers collaborate on one of these branches, just
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
214
like they would have collaborated on the ``dev`` branch. [#cbranch]_
215
216
.. [#nestedbranches] It may look odd to have a branch in a subdirectory of
217
   another branch. This is just fine, and you can think of it as a
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
218
   hierarchical namespace where the nested branch is derived from the
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
219
   outer branch.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
220
221
.. [#cbranch] When using lots of independent branches, having to retype
222
   the full URL all the time takes a lot of typing. We are looking into
223
   various methods to help with this, such as branch aliases, etc. For
224
   now, though, the bzrtools_ plugin provides the ``bzr cbranch`` command.
225
   Which is designed to take a base branch, create a new public branch,
226
   and create a checkout of that branch, all with much less typing.
227
   Configuring ``cbranch`` is outside the scope of this document, but the
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
228
   final commands are similar to:
229
230
::
231
232
   % bzr cbranch dev my-feature-branch
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
233
2482.1.1 by Robert Collins
(robertc) Trivially update the location of bzrtools in doc/centralized_workflow.txt
234
.. _bzrtools: http://bazaar-vcs.org/BzrTools
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
235
236
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
237
Merging changes back
238
--------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
239
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
240
When it is decided that some of the changes in ``doodle-fixes`` are ready
241
to be merged into the main branch, simply do::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
242
243
  % cd ~/work/sigil/dev
244
  % bzr merge ../doodle-fixes
245
2098.2.1 by John Arbash Meinel
Apply changes recommended by Alaa Salman
246
Now the changes are available in the ``dev`` branch, but they have not
247
been committed yet. This is the time when you want to review the final
248
changes, and double check the code to make sure it compiles cleanly and
249
passes the test suite. The commands ``bzr status`` and ``bzr diff`` are
250
good tools to use here. Also, this is the time to resolve any conflicts.
251
Bazaar_ will prevent you from committing until you have resolved these
252
conflicts. That way you don't accidentally commit the conflict markers.
253
The command ``bzr status`` will show the conflicts along with the other
254
changes, or you can use ``bzr conflicts`` to just list conflicts. Use
255
``bzr resolve file/name`` or ``bzr resolve --all`` once conflicts have
256
been handled. [#resolve]_ If you have a conflict that is particularly
257
difficult to solve you may want to use the ``bzr remerge`` command. It
258
will let you try different merge algorithms, as well as let you see the
259
original source lines (``--show-base``).
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
260
261
.. [#resolve] Some systems make you resolve conflicts as part of the merge
262
   process. We have found that it is usually easier to resolve conflicts
263
   when you have the view of the entire tree, rather than just a single
264
   file. It gives you much more context, and also lets you run tests as
265
   you resolve the problems.
266
267
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
268
Recommended Branching
269
---------------------
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
270
271
One very common way to handle all of these branches is to give each
272
developer their own branch, and their own place to work in the central
273
location. This can be done with::
274
275
  % bzr branch sftp://centralhost/srv/bzr/sigil \
276
               sftp://centralhost/srv/bzr/sigil/user-a
277
  % bzr branch sftp://centralhost/srv/bzr/sigil \
278
               sftp://centralhost/srv/bzr/sigil/user-b
279
280
This gives each developer their own branch to work on. And, they can
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
281
easily create a new feature branch for themselves with just [#cbranch]_
282
::
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
283
284
  % bzr branch sftp://centralhost/srv/bzr/sigil/user-a \
285
               sftp://centralhost/srv/bzr/sigil/user-a/feature 
286
  % cd ~/work/sigil
287
  % bzr checkout sftp://centralhost/srv/bzr/sigil/user-a/feature myfeature
288
289
2098.2.3 by John Arbash Meinel
Switch to automatic numbering for sections and sub-sections.
290
Glossary
291
========
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
292
293
Shared Repository
294
-----------------
295
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
296
Bazaar_ has the concept of a "Shared Repository". This is similar to
2293.1.6 by Brad Crittenden
post review changes
297
the traditional concept of a repository in other RCSs like CVS and
298
Subversion. For example, in Subversion you have a remote repository,
299
which is where all of the history is stored, and locally you don't
300
have any history information, only a checkout of the working tree
301
files. Note that "Shared" in this context means shared between
302
branches. It *may* be shared between people, but standalone branches
303
can also be shared between people.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
304
2098.2.2 by John Arbash Meinel
minor cleanup
305
In Bazaar_ terms, a "Shared Repository" is a location where multiple
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
306
branches can **share** their revision history information. In order to
307
support decentralized workflows, it is possible for every branch to
2293.1.6 by Brad Crittenden
post review changes
308
store its own revision history information. But this is often
2293.1.3 by Brad Crittenden
Updated version_info.txt for grammar changes
309
inefficient, since related branches share history, and they might as
310
well share the storage as well.
1964.2.1 by John Arbash Meinel
Adding basic documentation about working with a central repository
311
312
313
.. 
314
   vim: tw=74 ft=rst spell spelllang=en_us