~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Ian Clatworthy
  • Date: 2007-11-21 02:54:47 UTC
  • mto: (3054.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3055.
  • Revision ID: ian.clatworthy@internode.on.net-20071121025447-nhk6gpbi273neulr
add conflict handling as an Appendix + minor tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
What is Bazaar?
5
5
---------------
6
6
 
7
 
Bazaar is a tool for helping people collaborate together. It does this by
 
7
Bazaar is a tool for helping people collaborate. It does this by
8
8
tracking how a group of files evolves and using that information to help
9
9
people merge their changes together as safely as possible.
10
10
 
49
49
centralized model tightly links the act of snapshotting changes with the act
50
50
of publishing those changes. This can have a negative influence on quality.
51
51
 
52
 
Decentralized VCS tools let users and teams have multiple repositories
 
52
Distributed VCS tools let users and teams have multiple repositories
53
53
rather than just one central one. In Bazaar's case, the history is
54
54
normally kept in the same place as the code that is being version controlled.
55
55
This allows the user to commit their changes whenever it makes sense, even
56
56
when offline. Network access is only required when publishing changes or
57
57
when accessing changes in another location.
58
58
 
59
 
For a detailed look at the advantages of decentralized VCS tools over
 
59
For a detailed look at the advantages of distributed VCS tools over
60
60
centralized VCS tools, see http://bazaar-vcs.org/BzrWhy. In a nutshell,
61
61
it comes down to this: distributed VCS tools make effective collaboration
62
62
easier, saving effort and increasing quality along the way.