Function: treemacs--git-status-process
treemacs--git-status-process is a byte-compiled function defined in
treemacs-async.el.
Signature
(treemacs--git-status-process PATH PROJECT)
Documentation
Run treemacs--git-status-process-function on PATH, if allowed for PROJECT.
Remote projects are ignored.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-async.el
(defun treemacs--git-status-process (path project)
"Run `treemacs--git-status-process-function' on PATH, if allowed for PROJECT.
Remote projects are ignored."
(when (treemacs-project->is-local-and-readable? project)
(treemacs--git-status-process-function path)))