Function: forge-checkout-this-pullreq
forge-checkout-this-pullreq is an autoloaded, interactive and
byte-compiled function defined in forge-commands.el.
Signature
(forge-checkout-this-pullreq)
Documentation
Checkout the current pull-request.
If the branch for that pull-request does not exist yet, then create and configure it first.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload(autoload 'forge-checkout-this-pullreq "forge-commands" nil t)
(transient-define-suffix forge-checkout-this-pullreq ()
"Checkout the current pull-request.
If the branch for that pull-request does not exist yet, then create and
configure it first."
:description "checkout"
:inapt-if-not #'forge-current-pullreq
(interactive)
(forge-checkout-pullreq (forge-current-topic t)))