美文网首页
git submodule的使用

git submodule的使用

作者: 浩3108 | 来源:发表于2017-03-15 14:12 被阅读21次
    1. 拉取子模块代码
      git submodule update --remote --merge src/app/jm
    2. 推送子模块代码
      cd src/app/jm
      git add . && git commit -m "xxxxx" && git push
      cd ../../../
      git add . && git commit -m "src/app/jm commit" && git push

    相关文章

      网友评论

          本文标题:git submodule的使用

          本文链接:https://www.haomeiwen.com/subject/uwmlnttx.html