Differences between revisions 1 and 2
Revision 1 as of 2016-02-02 16:36:18
Size: 893
Editor: Mathiasdm
Comment:
Revision 2 as of 2016-02-02 16:55:34
Size: 1006
Editor: Mathiasdm
Comment:
Deletions are marked like this. Additions are marked like this.
Line 44: Line 44:

Alternatively, the same output as for a 'file/symlink' conflict could be used. That case is handled properly.

MergePlan

Motivation

A number of merge cases are currently not handled in a clean way. This is not user-friendly and can be difficult for regular users to resolve. Ideally, rather than automatically aborting in these cases, we should present users with a dialog allowing them to choose the type of resolution they want.

Different problematic cases

File/directory conflict

Trigger:

 hg init foo
 cd foo
 touch bar
 hg add
 hg commit -m "add bar"
 touch woop
 hg add
 hg commit -m "add woop file"

 hg up -r 0
 mkdir woop
 touch woop/somefile
 hg add
 hg commit -m "add woop directory"

 hg merge

Current output:

 abort: Is a directory: '/tmp/foo/woop'

Expected output:

 remote created file while local created directory
 keep (d)irectory, keep (f)ile, or leave (u)nresolved?

Alternatively, the same output as for a 'file/symlink' conflict could be used. That case is handled properly.

MergePlan (last edited 2016-02-16 06:04:12 by Mathiasdm)