##// END OF EJS Templates
dirstate-item: use `added` instead of `state` when moving dirstate...
marmoute -
r48917:207df24a default
parent child Browse files
Show More
@@ -1505,7 +1505,7 b' def movedirstate(repo, newctx, match=Non'
1505 }
1505 }
1506 # Adjust the dirstate copies
1506 # Adjust the dirstate copies
1507 for dst, src in pycompat.iteritems(copies):
1507 for dst, src in pycompat.iteritems(copies):
1508 if src not in newctx or dst in newctx or ds[dst] != b'a':
1508 if src not in newctx or dst in newctx or not ds.get_entry(dst).added:
1509 src = None
1509 src = None
1510 ds.copy(src, dst)
1510 ds.copy(src, dst)
1511 repo._quick_access_changeid_invalidate()
1511 repo._quick_access_changeid_invalidate()
General Comments 0
You need to be logged in to leave comments. Login now