Git-subrepo

To store multiple related repositories in github closely together. I use the solution from
 ingydotnet/git-subrepo

Comparison of other git module options

FeatureGit SubmoduleCustom git-subrepoGit Subtree
Code sharingAs subdirectoriesAs subdirectoriesAs subdirectories
Dependency managementYesYesYes
Separate historyYesYesNo (merged history)
Ease of useComplexModerateModerate
Requires additional setupYesYesNo
UpdatesManual update requiredAutomated updates possibleManual update required
StorageReference to external repoFull copy of external repoFull copy of external repo
WorkflowDecentralizedDecentralizedDecentralized
Learning curveSteepModerateModerate
CompatibilityNative Git featureRequires installationNative Git feature (since 1.7.11)

Key Differences

Git Submodule

  • Maintains separate repository references
  • Lightweight but complex to manage
  • Requires explicit version pinning
  • Minimal storage overhead

Custom git-subrepo

  • More flexible update mechanism
  • Easier to synchronize changes
  • Potentially more user-friendly
  • Requires additional tooling

Git Subtree

  • Simplest implementation
  • Merges entire repository history
  • No additional tooling required
  • Easier for linear project structures

Recommendation depends on specific project complexity and team workflow preferences.