Function: projectile-siblings-from-owner
projectile-siblings-from-owner is a byte-compiled function defined in
projectile.el.
Signature
(projectile-siblings-from-owner ROOT)
Documentation
Return the known projects whose upstream has the same owner as ROOT's.
The account or organization a repository hangs off is the strongest hint there is that two projects are part of one effort, and the only one that relates projects whose names have nothing in common.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-siblings-from-owner (root)
"Return the known projects whose upstream has the same owner as ROOT\\='s.
The account or organization a repository hangs off is the strongest hint
there is that two projects are part of one effort, and the only one that
relates projects whose names have nothing in common."
(projectile--siblings-by-key
root (lambda (project)
(plist-get (projectile-repo-identity project) :owner))))