~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/conflict-types.txt

  • Committer: Andrew Bennetts
  • Date: 2010-12-14 23:14:44 UTC
  • mfrom: (5569 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5570.
  • Revision ID: andrew.bennetts@canonical.com-20101214231444-uubf7zjbg8q92ocs
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
 
88
88
The correct resolution would be "Martin Pool released Bazaar."
89
89
 
90
 
You can handle text conflicts either by editing the main copy of the file, or
91
 
by invoking external tools on the THIS, OTHER and BASE versions.  It's worth
92
 
mentioning that resolving text conflicts rarely involves picking one set of
93
 
changes over the other.  More often, the two sets of changes must be
94
 
intelligently combined.
 
90
You can handle text conflicts either by editing the main copy of the file,
 
91
or by invoking external tools on the THIS, OTHER and BASE versions.  It's
 
92
worth mentioning that resolving text conflicts rarely involves picking one
 
93
set of changes over the other (but see below when you encounter these
 
94
cases).  More often, the two sets of changes must be intelligently combined.
95
95
 
96
96
If you edit the main copy, be sure to remove the herringbone markers.  When
97
97
you are done editing, the file should look like it never had a conflict, and be
104
104
``.BASE``, ``.THIS`` and ``.OTHER`` files if they are still present in the
105
105
working tree.
106
106
 
 
107
 
 
108
When you want to pick one set of changes over the other, you can use ``bzr
 
109
resolve`` with one of the following actions:
 
110
 
 
111
* ``--action=take-this`` will issue ``mv FILE.THIS FILE``,
 
112
* ``--action=take-other`` will issue ``mv FILE.OTHER FILE``.
 
113
 
 
114
Note that if you have modified ``FILE.THIS`` or ``FILE.OTHER``, these
 
115
modifications will be taken into account.
 
116
 
107
117
Content conflicts
108
118
-----------------
109
119