diff -r b2df5dc3ebfb -r 6a447a3d1bd0 mercurial/commands.py --- a/mercurial/commands.py Thu Feb 07 23:19:33 2019 -0800 +++ b/mercurial/commands.py Thu Feb 07 23:25:39 2019 -0800 @@ -255,7 +255,9 @@ if not opts.get('similarity'): opts['similarity'] = '100' matcher = scmutil.match(repo[None], pats, opts) - return scmutil.addremove(repo, matcher, "", opts) + relative = scmutil.anypats(pats, opts) + uipathfn = scmutil.getuipathfn(repo, forcerelativevalue=relative) + return scmutil.addremove(repo, matcher, "", uipathfn, opts) @command('annotate|blame', [('r', 'rev', '', _('annotate the specified revision'), _('REV')),