diff -r 47539ea08bdb -r 4dccc37b87bd mercurial/commands.py --- a/mercurial/commands.py Sun Dec 06 12:31:46 2015 -0800 +++ b/mercurial/commands.py Sat Dec 05 21:11:04 2015 -0800 @@ -5364,6 +5364,8 @@ else: ui.write("%s = %s\n" % (name, util.hidepassword(path.loc))) + for subopt, value in sorted(path.suboptions.items()): + ui.write('%s:%s = %s\n' % (name, subopt, value)) @command('phase', [('p', 'public', False, _('set changeset phase to public')),