diff options
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/init.el | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index f3d10cd..3f01602 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -396,7 +396,20 @@ mode requires settings additional variables, those should be listed in (use-package magit :custom (magit-display-buffer-function - #'magit-display-buffer-same-window-except-diff-v1)) + #'magit-display-buffer-same-window-except-diff-v1) + :config + (transient-define-suffix x-magit-push-current-to-all-remotes (args) + "Push the current branch to all remotes." + :if #'magit-get-current-branch + (interactive (list (magit-push-arguments))) + (run-hooks 'magit-credential-hook) + (let ((branch (magit-get-current-branch))) + (dolist (remote (magit-list-remotes)) + (magit-run-git-async + "push" "-v" args remote + (format "refs/heads/%s:refs/heads/%s" branch branch))))) + (transient-append-suffix 'magit-push '(1 -1) + '("a" "all branches" x-magit-push-current-to-all-remotes))) (use-package magit-todos :after magit |