Function: magit-push-tag
magit-push-tag is an autoloaded, interactive and byte-compiled
function defined in magit-push.el.
Signature
(magit-push-tag TAG REMOTE &optional ARGS)
Documentation
Push a tag to another repository.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-push.el
;;;###autoload
(defun magit-push-tag (tag remote &optional args)
"Push a tag to another repository."
(interactive
(let ((tag (magit-read-tag "Push tag")))
(list tag (magit-read-remote (format "Push %s to remote" tag) nil t)
(magit-push-arguments))))
(run-hooks 'magit-credential-hook)
(magit-run-git-async "push" remote tag args))