Function: magit-push-tags
magit-push-tags is an autoloaded, interactive and byte-compiled
function defined in magit-push.el.
Signature
(magit-push-tags REMOTE &optional ARGS)
Documentation
Push all tags to another repository.
If only one remote exists, then push to that. Otherwise prompt for a remote, offering the remote configured for the current branch as default.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-push.el
;;;###autoload
(defun magit-push-tags (remote &optional args)
"Push all tags to another repository.
If only one remote exists, then push to that. Otherwise prompt
for a remote, offering the remote configured for the current
branch as default."
(interactive (list (magit-read-remote "Push tags to remote" nil t)
(magit-push-arguments)))
(run-hooks 'magit-credential-hook)
(magit-run-git-async "push" remote "--tags" args))