/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/user-guide/partner_intro.txt

  • Committer: Martin Pool
  • Date: 2005-08-17 02:06:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050817020618-c7ae430253df8532
- rearrangement of modules, contributed by Gustavo Niemeyer


1) Moved plugins directory to bzrlib/, so that there's a standard
  plugin directory which is not only installed with bzr itself
  but is also available when using bzr from the development tree.
  BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
  standard plugins directory.

2) Moved the needed third-party tools to an internal directory under
  bzrlib/util.  This makes sure that needed tools are available in
  the bzr installation, including the correct/expected version, and
  eases the process of packaging and redistribution of bzr
  ('setup.py bdist*' creates a working distribution).

3) Fixed setup.py including the needed package entries.

I hope you find them useful.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Working with another
2
 
====================
3
 
 
4
 
Peer-to-peer rocks
5
 
------------------
6
 
 
7
 
In many cases, two minds can be better than one. You may be the one
8
 
who started a project and someone wishes to help, or perhaps it's you
9
 
who wants to help another. Perhaps you are both members of a larger
10
 
team that have been assigned a task together as pair programmers.
11
 
Either way, two people need to agree on a process, a set of
12
 
guidelines and a toolset in order to work together effectively.
13
 
 
14
 
Imagine if you were not allowed to call someone on the phone directly
15
 
and the only way to talk to them was by registering a conference call first?
16
 
Companies and communities that only share code via a central VCS
17
 
repository are living with a similar straitjacket to that every day.
18
 
There are times when central control makes a lot of sense and times
19
 
when peer-to-peer rocks. Either way, Bazaar is designed to help.
20
 
 
21
 
The partner workflow
22
 
--------------------
23
 
 
24
 
While it's certainly not the only way to do it, the *partner workflow*
25
 
below is a good starting point for a pair of people who wish to
26
 
collaborate using Bazaar.
27
 
 
28
 
.. image:: images/workflows_peer.png
29
 
 
30
 
Over and above the tasks covered in the previous chapter, this
31
 
chapter introduces two essential collaboration activities:
32
 
 
33
 
 * getting a copy of a branch
34
 
 * merging changes between branches.
35
 
 
36
 
Even when it's just you working on a code base, it can be very useful
37
 
to keep multiple branches around (for different releases say) and
38
 
to merge changes between them as appropriate. Your "partner" may indeed
39
 
be yourself.