IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> git submodules -> 正文阅读

[开发工具]git submodules

Git submodules使用方法

1.构建submodule实例

Step1:下载git父仓库

cd /root/workspace
git clone https://github.com/daneren/main_project.git

Step2:添加git子仓库

cd /root/workspace/main_project
git submodule add https://github.com/daneren/sub_project.git

Step3:初始化mian_project

git submodule update --init --recursive

Step3:查看状态

cd /root/workspace/main_project

git status
# On branch main
# Your branch is up to date with 'origin/main'.

# Changes to be committed:
#  (use "git restore --staged <file>..." to unstage)
#         new file:   .gitmodules
#         new file:   sub_project
       
 
# 进入sub_project
cd /root/workspace/main_project/sub_project

git status
# On branch main
# Your branch is up to date with 'origin/main'.

# nothing to commit, working tree clean

git branch -a
# * (HEAD detached at origin/main)
#   main
#   remotes/origin/HEAD -> origin/main
#   remotes/origin/main
  
# sub_project从流离状态切换main分支
git checkout main
# Switched to branch 'main'
# Your branch is up to date with 'origin/main'.

git branch -a
# * main
#   remotes/origin/HEAD -> origin/main
#   remotes/origin/main

Step4:更新主仓库

cd /root/workspace/mian_project
git commit -am 'add submodule sub_project'
git push

image-20220303143253190

2.下载submodule实例

直接下载克隆含有子模块的项目

git clone https://github.com/daneren/main_project.git
cd main_project/
git submodule update --init --recursive # 初始化所有子模块

or

git clone --recurse-submodules https://github.com/daneren/main_project.git #自动初始化mian_project包含的所有submodule

3.修改sub_project并在mian_project同步

修改sub_project

cd /root/workspace/mian_project/sub_project

echo "This is a submodule." > new.txt

git status
# HEAD detached from refs/heads/main
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#         new.txt

# nothing added to commit but untracked files present (use "git add" to track)

git branch -a
# * (HEAD detached from refs/heads/main)
#   main
#   remotes/origin/HEAD -> origin/main
#   remotes/origin/main

git add .
git commit -m 'add new.txt' 
git push origin HEAD:main # 提交到主分支

image-20220303152818558

mian_project同步

cd /root/workspace/mian_project/

git status
# On branch main
# Your branch is up to date with 'origin/main'.

# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git restore <file>..." to discard changes in working directory)
#         modified:   sub_project (new commits)

# no changes added to commit (use "git add" and/or "git commit -a")

git add .
git commit -m "update submodule add new.txt"
git push

image-20220303153154469

单独下载sub_project修改并提交,在原有main_project更新到最新sub_project remote commit

cd /root/workspace/
git clone git@github.com:daneren/sub_project.git
cd sub_project

echo "This is a new2 file." > new2.txt

git add . && git commit -m 'add new2.txt'

git push

image-20220303153733660

# init main_project
rm -rf /root/workspace/main_project
# update main_project
cd /root/workspace/
git clone https://github.com/daneren/main_project.git
cd /root/workspace/main_project

git submodule update --init --recursive
# Submodule 'sub_project' (https://github.com/daneren/sub_project.git) registered for path 'sub_project'
# Cloning into '/data/workspace/main_project/sub_project'...
# Submodule path 'sub_project': checked out 'ceee669bd8e29bb3cf2c049af0b4b7613208f952'

# 选择sub_projrct branch 拉取最新代码
git pull origin HEAD:main

git add .
git commit -m 'update submodule add new2.txt'
git push

image-20220303164240835

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2022-03-06 13:19:41  更:2022-03-06 13:20:17 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 6:20:03-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码