From 75c1a883332b8f98960a9e50ce960c69387a712a Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sun, 23 Nov 2025 21:33:19 -0300 Subject: [PATCH] git: push needed to update refs from the state after pushing. --- git.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git.go b/git.go index 363154d..4c0fcb0 100644 --- a/git.go +++ b/git.go @@ -588,6 +588,8 @@ var gitPush = &cli.Command{ return fmt.Errorf("failed to push to any remote") } + gitUpdateRefs(ctx, "", state) + return nil }, }