git子模块允许一个git仓库作为另一个仓库的子目录。
// 查看子包状态
git submodule status
// 更新子包
git submodule update --remote
// 新增子包
git submodule add https://github.com/maonx/vimwiki-assets.git client/www/whatever
// .gitmodules文件保存子包信息
参考:
1、https://git-scm.com/book/zh/v2/Git-%E5%B7%A5%E5%85%B7-%E5%AD%90%E6%A8%A1%E5%9D%97
2、这个比较好
网友评论