Issues Show Unassigned Show All Search
Login Remember me? Register Lost your login?
Help Roundup docs
Created on 2007-11-20.08:01:38 by padraigob, last changed 2008-02-12.09:58:49 by djc.
If I call hg log --follow new_file I can follow its history across copies and renames. If I want to revert to before the rename I need to know the old name. A --follow on hg revert to recreate the old file would be great.
Hmm, not sure if that's a bug. We do the right thing with: hg revert -r1 new_file old_file hg revert -r1 -a Setting to feature.
Suppose a old_file was renamed to new_file in revision 2. The command hg revert --rev 1 new_file deletes new_file but does not recreate old_file.