Function: projectile-get-sub-projects-command

projectile-get-sub-projects-command is a byte-compiled function defined in projectile.el.

Signature

(projectile-get-sub-projects-command VCS)

Documentation

Get the sub-projects command for VCS.

Currently that's supported just for Git (sub-projects being Git sub-modules there).

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-get-sub-projects-command (vcs)
  "Get the sub-projects command for VCS.
Currently that's supported just for Git (sub-projects being Git
sub-modules there)."
  (pcase vcs
    ('git projectile-git-submodule-command)
    (_ nil)))