~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/conflicts.txt

  • Committer: Aaron Bentley
  • Date: 2007-12-25 04:17:50 UTC
  • mto: This revision was merged to the branch mainline in revision 3160.
  • Revision ID: aaron.bentley@utoronto.ca-20071225041750-t6chr3pmgnebvqcz
Handle non-directory parent conflicts (abentley, #177390)

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
You can rename the directories if you like, and once you have, run "bzr resolve
174
174
FILE" to mark the conflict as resolved.
175
175
 
 
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
 
176
199
MalformedTransform
177
200
------------------
178
201