hgext/git/gitlog.py
changeset 52618 143063a94085
parent 52617 a26c5da900ff
child 52624 cdbfe5e7592e
--- a/hgext/git/gitlog.py	Thu Jan 02 10:54:50 2025 -0500
+++ b/hgext/git/gitlog.py	Thu Jan 02 11:24:09 2025 -0500
@@ -190,6 +190,12 @@
             self._log.node(idx),
         )
 
+    def rev(self, node):
+        return self._log.rev(node)
+
+    def get_rev(self, node):
+        return self._log.get_rev(node)
+
 
 # TODO: an interface for the changelog type?
 class changelog(baselog):