##// END OF EJS Templates
mq: use `set_untracked` in `qrename`...
marmoute -
r48401:4dca29b0 default
parent child Browse files
Show More
@@ -3640,7 +3640,7 b' def rename(ui, repo, patch, name=None, *'
3640 3640 wctx = r[None]
3641 3641 with r.wlock():
3642 3642 if r.dirstate[patch] == b'a':
3643 r.dirstate.drop(patch)
3643 r.dirstate.set_untracked(patch)
3644 3644 r.dirstate.set_tracked(name)
3645 3645 else:
3646 3646 wctx.copy(patch, name)
General Comments 0
You need to be logged in to leave comments. Login now