Issue2089

Title regression on merging copies (hg 1.5)
Priority bug Status resolved
Superseder Nosy List hgbot, kiilerix, mg, mpm, tonfa, wbruna, willemv
Assigned To Topics merge, regression

Created on 2010-03-11.18:15:18 by wbruna, last changed 2011-03-08.00:22:02 by mpm.

Messages
msg15404 (view) Author: hgbot Date: 2011-02-26.02:00:04
Fixed by http://selenic.com/repo/hg/rev/ca940d06bf95
Wagner Bruna <wbruna@softwareexpress.com.br>
tests: test renaming a file added on two branches (issue2089)

(please test the fix)
msg15393 (view) Author: willemv Date: 2011-02-25.00:47:53
http://selenic.com/repo/hg/rev/d100702326d5 was meant to fix issue2642, but it 
didn't quite. So I guess this bug still isn't resolved either
msg15383 (view) Author: wbruna Date: 2011-02-24.16:33:18
Seems to be fixed by http://selenic.com/repo/hg/rev/d100702326d5 .
msg12023 (view) Author: tonfa Date: 2010-03-11.18:20:46
tonfa@pirzuine:/tmp/t/t$ hg glog -q
@  3:94f95dfe36b2
|
| @  2:5006b89af187
|/|
o |  1:24f4224b3a38
 /
o  0:961e52e133c2

'a' moves to 'A' between 1 and 3.
msg12022 (view) Author: wbruna Date: 2010-03-11.18:15:18
This happens since 31141fd7c9cc , and seems related to the fix for issue1994 :

hg init t
cd t

echo "0" > A
hg -q ci -Am 0

hg -q up -C null
echo "1" > A
hg -q ci -Am 1

hg -q up -C 0
hg -q --config 'ui.merge=internal:local' merge -r 1
echo "2" > A
hg -q ci -m 2

hg -q up -C 1
hg mv A a
hg -q ci -Am 3

hg -q up -C 2
hg -y merge -r 3

On 1.4.3:
merging A and a to a
0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)

On 1.5:
 local changed A which remote deleted
use (c)hanged version or (d)elete? c
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
History
Date User Action Args
2011-03-08 00:22:02mpmsetstatus: testing -> resolved
nosy: mpm, tonfa, kiilerix, mg, wbruna, willemv, hgbot
2011-02-26 02:00:04hgbotsetnosy: + hgbot
messages: + msg15404
2011-02-25 00:47:53willemvsetnosy: mpm, tonfa, kiilerix, mg, wbruna, willemv
messages: + msg15393
2011-02-24 16:33:18wbrunasetstatus: chatting -> testing
nosy: mpm, tonfa, kiilerix, mg, wbruna, willemv
messages: + msg15383
2011-02-22 16:29:37willemvsetnosy: + willemv
2011-02-21 14:47:05kiilerixsetnosy: + kiilerix
2010-03-31 21:08:56mgsetnosy: + mg
2010-03-11 18:20:46tonfasetstatus: unread -> chatting
nosy: mpm, tonfa, wbruna
messages: + msg12023
2010-03-11 18:19:49tonfasettopic: + regression
nosy: mpm, tonfa, wbruna
2010-03-11 18:19:44tonfasettopic: + merge
nosy: + tonfa, mpm
2010-03-11 18:15:18wbrunacreate