Function: forge-add-organization-repositories
forge-add-organization-repositories is an autoloaded, interactive and
byte-compiled function defined in forge-commands.el.
Signature
(forge-add-organization-repositories HOST ORGANIZATION)
Documentation
Add all of ORGANIZATION's repositories from HOST to the database.
This may take a while. Only Github is supported at the moment.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload
(defun forge-add-organization-repositories (host organization)
"Add all of ORGANIZATION's repositories from HOST to the database.
This may take a while. Only Github is supported at the moment."
(interactive
(list (forge-read-host "Add repositories from Github host"
'forge-github-repository)
(read-string "Organization: ")))
(forge--add-organization-repos 'forge-github-repository host organization))