# HG changeset patch # User Christian Delahousse # Date 1447369208 21600 # Node ID 080276d377d9131c1fd4f538f7def95d669eba9f # Parent dda0aa3baeddc95a3834bed1fc718c747f224bbf revert: allow configuring the .orig file location diff -r dda0aa3baedd -r 080276d377d9 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Thu Nov 12 16:56:06 2015 -0600 +++ b/mercurial/cmdutil.py Thu Nov 12 17:00:08 2015 -0600 @@ -3082,7 +3082,7 @@ xlist.append(abs) if dobackup and (backup <= dobackup or wctx[abs].cmp(ctx[abs])): - bakname = "%s.orig" % rel + bakname = origpath(ui, repo, rel) ui.note(_('saving current version of %s as %s\n') % (rel, bakname)) if not opts.get('dry_run'): diff -r dda0aa3baedd -r 080276d377d9 tests/test-revert.t --- a/tests/test-revert.t Thu Nov 12 16:56:06 2015 -0600 +++ b/tests/test-revert.t Thu Nov 12 17:00:08 2015 -0600 @@ -86,6 +86,16 @@ saving current version of e as e.orig reverting e +Test creation of backup (.orig) file in configured file location +---------------------------------------------------------------- + + $ echo z > e + $ hg revert --all -v --config 'ui.origbackuppath=.hg/origbackups' + creating directory: $TESTTMP/repo/.hg/origbackups + saving current version of e as $TESTTMP/repo/.hg/origbackups/e.orig + reverting e + $ rm -rf .hg/origbackups + revert on clean file (no change) --------------------------------