随笔分类 - git
摘要:工作流记录 master分支和develop分支 基础 The main branch stores the official release history, and the develop branch serves as an integration branch for features.
阅读全文
摘要:子模块拉取 首先执行git submodule init用来初始化本地配置文件,也就是向.git/config文件中写入了子模块的信息。 git submodule update则是从子仓库中抓取所有的数据找到父级仓库对应的那次子仓库的提交id并且检出到父项目的目录中。 子模块全部拉取 git cl
阅读全文