Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- builtin/push.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builtin/push.c b/builtin/push.c index a2abacf64d..4b3a14278a 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -243,7 +243,7 @@ static int is_workflow_triangular(struct remote *remote) static void setup_default_push_refspecs(struct remote *remote) { - struct branch *branch = branch_get(NULL); + struct branch *branch; int triangular = is_workflow_triangular(remote); switch (push_default) { @@ -258,6 +258,7 @@ static void setup_default_push_refspecs(struct remote *remote) default: } + branch = branch_get(NULL); if (!branch) die(_(message_detached_head_die), remote->name); -- 2.32.0.rc0