Function: ghub-clear-caches

ghub-clear-caches is an autoloaded, interactive and byte-compiled function defined in ghub.el.

Signature

(ghub-clear-caches)

Documentation

Clear all caches that might negatively affect Ghub.

If a library that is used by Ghub caches incorrect information such as a mistyped password, then that can prevent Ghub from asking the user for the correct information again.

Set url-http-real-basic-auth-storage to nil and call auth-source-forget+.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/ghub-20260401.1239/ghub.el
;;; Authentication
;;;; API

;;;###autoload
(defun ghub-clear-caches ()
  "Clear all caches that might negatively affect Ghub.

If a library that is used by Ghub caches incorrect information
such as a mistyped password, then that can prevent Ghub from
asking the user for the correct information again.

Set `url-http-real-basic-auth-storage' to nil
and call `auth-source-forget+'."
  (interactive)
  (setq url-http-real-basic-auth-storage nil)
  (auth-source-forget+))