`

git submodule

    博客分类:
  • git
 
阅读更多
# get the submodule initially
git submodule add ssh://bla submodule_dir
git submodule init
#git submodule update

# time passes, submodule upstream is updated
# and you now want to update

# change to the submodule directory
cd submodule_dir

# checkout desired branch
git checkout master

# update
git pull

# get back to your project root
cd ..

# now the submodules are in the state you want, so
git commit -am "Pulled down update to submodule_dir"


git submodules update --init

git submodule foreach git pull origin master



https://git.wiki.kernel.org/index.php/GitSubmoduleTutorial

http://git-scm.com/book/en/Git-Tools-Submodules
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics