Function: forge-add-user-repositories

forge-add-user-repositories is an autoloaded, interactive and byte-compiled function defined in forge-commands.el.

Signature

(forge-add-user-repositories HOST USER)

Documentation

Add all of USER'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-user-repositories (host user)
  "Add all of USER'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 "User: ")))
  (forge--add-user-repos 'forge-github-repository host user))