Function: projectile-browse-dirty-projects

projectile-browse-dirty-projects is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-browse-dirty-projects &optional CACHED)

Documentation

Browse dirty version controlled projects.

With a prefix argument, or if CACHED is non-nil, try to use the cached dirty project list.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-browse-dirty-projects (&optional cached)
  "Browse dirty version controlled projects.

With a prefix argument, or if CACHED is non-nil, try to use the cached
dirty project list."
  (interactive "P")
  (let ((status (if (and cached projectile-cached-dirty-projects-status)
                    projectile-cached-dirty-projects-status
                  (projectile-check-vcs-status-of-known-projects)))
        (mod-proj nil))
    (while (not (= (length status) 0))
      (setq mod-proj (cons (car (pop status)) mod-proj)))
    (projectile-completing-read "Select project: " mod-proj
                                :action 'projectile-vc
                                :caller 'projectile-read-project)))