svn - What is the 'git' way to check out multiple repositories (in specific versions) in one step? -
consider product a consists of several small modules. want check them out @ specific versions in 1 step.
in svn can make branch specific versions of modules , check them out in 1 step that.
what git's way of doing ? there better way or same?
what git's way of doing ?
in git
can incorporate 1 repository inside submodule. given repo can have many submodules like. when commit main repo, current commit hash each submodule saved well. use git submodule update
retrieve versions of each submodule had when committed main repo.
like of git
, using submodules can confusing until hang of it. works little more svn
model other aspects of git
, should still read on submodules before jumping in.
Comments
Post a Comment