2

I have a git repo with various helpers and I want to use them in multiple personal projects. I've tried using subtree approach described in "Pro Git" book but had troubles updating the "Utils" repo. Should I use the submodules? All projects have single contributor (me) and are hosted at Github.

Adam Dymitruk
  • 124,556
  • 26
  • 146
  • 141
synapse
  • 5,588
  • 6
  • 35
  • 65

1 Answers1

1

Use submodules. If you find that you are updating your utils often, I would make use git slave. This will propagate commands into the submodule level.

Adam Dymitruk
  • 124,556
  • 26
  • 146
  • 141