annotate mercurial/__init__.py @ 6805:482581431dcd
Sort removes first when applying updates (fixes issues 750 and 912)
This change ensures that removes happen first in applyupdates(). This avoids
issues where we try to make a case-only rename of a file on a case insensitive
system. Without this patch, the add of the new name happens before the remove
of the old one - which results in the file not existing, as the two names are
effectively the same.
With the patch, the old name gets removed then the new one gets added, which
is always safe.
author |
Paul Moore <p.f.moore@gmail.com> |
date |
Tue, 01 Jul 2008 17:59:31 +0100 |
parents |
9117c6561b0b |
children |
4374d819ccd5 |