[PATCH 06 of 14] git: add nop refresh method to gitdirstate
Josef 'Jeff' Sipek
jeffpc at josefsipek.net
Thu Jan 2 18:58:28 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 1735835752 18000
# Thu Jan 02 11:35:52 2025 -0500
# Node ID e6e6f461262a64ae41c0d75ae909ce4f32f0d430
# Parent 89e76c15d467483b9272b1ac7bfebb42132defbf
git: add nop refresh method to gitdirstate
diff --git a/hgext/git/dirstate.py b/hgext/git/dirstate.py
--- a/hgext/git/dirstate.py
+++ b/hgext/git/dirstate.py
@@ -464,3 +464,6 @@ class gitdirstate(intdirstate.idirstate)
self, m1, m2, p1: bytes, narrow_matcher: Optional[Any] = None
) -> Iterator[bytes]:
raise error.Abort(b"not yet implemented")
+
+ def refresh(self):
+ pass
More information about the Mercurial-devel
mailing list