changeset 45419 | 6739ef7c5fcf |
parent 44951 | 83e41b73d115 |
child 45942 | 89a2afe31e82 |
--- a/hgext/git/__init__.py Mon Sep 07 16:25:16 2020 -0400 +++ b/hgext/git/__init__.py Mon Sep 07 16:27:12 2020 -0400 @@ -297,6 +297,10 @@ def commit(self, *args, **kwargs): ret = orig.commit(self, *args, **kwargs) + if ret is None: + # there was nothing to commit, so we should skip + # the index fixup logic we'd otherwise do. + return None tid = self.store.git[gitutil.togitnode(ret)].tree.id # DANGER! This will flush any writes staged to the # index in Git, but we're sidestepping the index in a