~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Conflicts Types
2
 
===============
 
1
=================
 
2
Conflict handling
 
3
=================
3
4
 
4
5
Some operations, like merge, revert and pull, modify the contents of your
5
6
working tree.  These modifications are programmatically generated, and so they
15
16
 
16
17
 
17
18
Text conflicts
18
 
--------------
19
 
 
 
19
==============
20
20
Typical message::
21
21
 
22
22
  Text conflict in FILE
58
58
auto-detect which conflicts you have resolved.
59
59
 
60
60
Content conflicts
61
 
-----------------
62
 
 
 
61
=================
63
62
Typical message::
64
63
 
65
64
  Contents conflict in FILE
79
78
FILE".  Bazaar cannot auto-detect when conflicts of this kind have been
80
79
resolved.
81
80
 
82
 
Duplicate paths
83
 
---------------
84
 
 
 
81
Duplicate Paths
 
82
===============
85
83
Typical message::
86
84
 
87
85
  Conflict adding file FILE.  Moved existing file to FILE.moved.
92
90
When you are satisfied, you can run "bzr resolve FILE" to mark the conflict as
93
91
resolved.
94
92
 
95
 
Unversioned parent
96
 
------------------
97
 
 
 
93
Unversioned Parent
 
94
==================
98
95
Typical message::
99
96
 
100
97
    Conflict because FILE is not versioned, but has versioned children.
107
104
the file or the directory.  When you are satisfied, you can run "bzr resolve
108
105
FILE" to mark the conflict as resolved.
109
106
 
110
 
Missing parent
111
 
--------------
112
 
 
 
107
Missing Parent
 
108
==============
113
109
Typical message::
114
110
 
115
111
  Conflict adding files to FILE.  Created directory.
122
118
either the file or the directory.  When you are satisfied, you can run "bzr
123
119
resolve FILE" to mark the conflict as resolved.
124
120
 
125
 
Deleting parent
126
 
---------------
127
 
 
 
121
Deleting Parent
 
122
===============
128
123
Typical message::
129
124
 
130
125
  Conflict: can't delete FILE because it is not empty.  Not deleting.
135
130
wish to rename or delete either the file or the directory.  When you are
136
131
satisfied, you can run "bzr resolve FILE" to mark the conflict as resolved.
137
132
 
138
 
Path conflict
139
 
-------------
140
 
 
 
133
Path Conflict
 
134
=============
141
135
Typical message::
142
136
 
143
137
  Path conflict: PATH1 / PATH2
147
141
can rename the file, and once you have, run "bzr resolve FILE" to mark the
148
142
conflict as resolved.
149
143
 
150
 
Parent loop
151
 
-----------
152
 
 
 
144
Parent Loop
 
145
===========
153
146
Typical message::
154
147
 
155
148
  Conflict moving FILE into DIRECTORY.  Cancelled move.
173
166
You can rename the directories if you like, and once you have, run "bzr resolve
174
167
FILE" to mark the conflict as resolved.
175
168
 
176
 
Non-directory parent
177
 
--------------------
178
 
 
179
 
Typical message::
180
 
 
181
 
  Conflict: FILE.new is not a directory, but has files in it.
182
 
  Created directory.
183
 
 
184
 
This happens when one side has added files to a directory, and the othe side
185
 
has changed the directory into a file or symlink.  For example::
186
 
 
187
 
  $ bzr init
188
 
  $ bzr mkdir a
189
 
  $ bzr commit -m "BASE"
190
 
  $ bzr branch . ../other
191
 
  $ rmdir a
192
 
  $ touch a
193
 
  $ bzr commit -m "THIS"
194
 
  $ bzr mkdir ../other/a/b
195
 
  $ bzr commit ../other -m "OTHER"
196
 
  $ bzr merge ../other
197
 
 
198
 
 
199
169
MalformedTransform
200
 
------------------
201
 
 
 
170
==================
202
171
It is possible (though very rare) for Bazaar to raise a MalformedTransform
203
172
exception.  This means that Bazaar encountered a filesystem conflict that it was
204
173
unable to resolve.  This usually indicates a bug.  Please let us know if you