From 5aabf8c9f282e47f55a4cacd369d4ccf408e70e1 Mon Sep 17 00:00:00 2001 From: Sebastian Schulze Date: Tue, 15 Aug 2023 10:34:41 +0200 Subject: [PATCH] [emacs] Let bascht/create-mr-from-issue push the branch to remote Otherwise GitLab won't pick it up. --- dot_doom.d/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_doom.d/config.el b/dot_doom.d/config.el index 9276a7f..b4e7f1b 100644 --- a/dot_doom.d/config.el +++ b/dot_doom.d/config.el @@ -468,7 +468,7 @@ (let* ((branch-name (completing-read "Branch name suggestions:" branch-suggestions))) (message (format "Will create branch %s" branch-name)) (magit-branch-and-checkout branch-name (magit-main-branch)) - (call-interactively #'magit-push-current) + (call-interactively #'magit-push-current-to-pushremote) (forge-create-pullreq branch-name (magit-main-branch)) (insert "Draft: \n")