Mercurial > public > mercurial-scm > hg
diff mercurial/cmdutil.py @ 41591:4d4842445afc
revert: always show relative path to .orig backup
This helps make some future patches easier when I replace origpath()
by another function that works with repo-relative paths (origpath()
works with cwd-relative paths).
Always showing a relative path seems a little more user-friendly and
is more consistent between configured ui.origbackuppath and not. OTOH,
it's annoying if ui.origbackuppath is far outside the repo. This is
just --verbose output, so I don't think it's worth spending much time
on (I've already wasted too many hours on it).
Differential Revision: https://phab.mercurial-scm.org/D5871
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 06 Feb 2019 14:57:08 -0800 |
parents | 15f63ac122ea |
children | 9e545c9a4dfe |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Tue Feb 05 17:02:40 2019 -0500 +++ b/mercurial/cmdutil.py Wed Feb 06 14:57:08 2019 -0800 @@ -3018,8 +3018,9 @@ tobackup.add(abs) elif (backup <= dobackup or wctx[abs].cmp(ctx[abs])): bakname = scmutil.origpath(ui, repo, rel) + relbakname = os.path.relpath(bakname) ui.note(_('saving current version of %s as %s\n') % - (rel, bakname)) + (rel, relbakname)) if not opts.get('dry_run'): if interactive: util.copyfile(target, bakname)