[PATCH 07 of 14] git: add stub for gitdirstate.running_status

Josef 'Jeff' Sipek jeffpc at josefsipek.net
Thu Jan 2 18:58:29 UTC 2025


 hgext/git/dirstate.py |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


# HG changeset patch
# User Josef 'Jeff' Sipek <jeffpc at josefsipek.net>
# Date 1727895204 14400
#      Wed Oct 02 14:53:24 2024 -0400
# Node ID 4b50801797ddbbf4cd87849a1506a6073a76e028
# Parent  e6e6f461262a64ae41c0d75ae909ce4f32f0d430
git: add stub for gitdirstate.running_status

diff --git a/hgext/git/dirstate.py b/hgext/git/dirstate.py
--- a/hgext/git/dirstate.py
+++ b/hgext/git/dirstate.py
@@ -465,5 +465,8 @@ class gitdirstate(intdirstate.idirstate)
     ) -> Iterator[bytes]:
         raise error.Abort(b"not yet implemented")
 
+    def running_status(self, repo):
+        raise error.Abort(b"not yet implemented")
+
     def refresh(self):
         pass



More information about the Mercurial-devel mailing list