美文网首页
Git submodule

Git submodule

作者: 想养只土狗 | 来源:发表于2017-01-04 18:01 被阅读40次

Add submodule to .gitmodules

git submodule add git://github.com/bitstadium/HockeySDK-iOS.git Vendor/HockeySDK

Check the status

git status

logs:

On branch masterYour branch is up-to-date with 'origin/master'.Changes to be committed:  (use "git reset HEAD..." to unstage)

modified:  .gitmodules

new file:  Vendor/HockeySDK

Commit

git commit -m "Add HockeySDK-iOS as submodule"

Then `git pull` and `git push`.

The content of .gitmodules:

[submodule "Vendor/HockeySDK"]

       path = Vendor/HockeySDK

       url = git://github.com/bitstadium/HockeySDK-iOS.git

相关文章

网友评论

      本文标题:Git submodule

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