mercurial/commands.py
changeset 42419 69883775b27d
parent 42418 9803323048b6
child 42448 1314c0bb6b24
--- a/mercurial/commands.py	Tue Jun 04 20:58:39 2019 +0900
+++ b/mercurial/commands.py	Tue Jun 04 21:13:35 2019 +0900
@@ -5232,12 +5232,23 @@
 
     Print the root directory of the current repository.
 
+    .. container:: verbose
+
+      Template:
+
+      The following keywords are supported in addition to the common template
+      keywords and functions. See also :hg:`help templates`.
+
+      :hgpath:    String. Path to the .hg directory.
+      :storepath: String. Path to the directory holding versioned data.
+
     Returns 0 on success.
     """
     opts = pycompat.byteskwargs(opts)
     with ui.formatter('root', opts) as fm:
         fm.startitem()
         fm.write('reporoot', '%s\n', repo.root)
+        fm.data(hgpath=repo.path, storepath=repo.spath)
 
 @command('serve',
     [('A', 'accesslog', '', _('name of access log file to write to'),