在iss053上做了一些修改

This commit is contained in:
Aaron Chen 2021-11-26 08:52:34 +08:00
parent 58c0c4c07a
commit 8da78f3f71

View File

@ -24,8 +24,16 @@ git clone https://gitee.com/polaris-arvin_admin/callapp_mrcp.git
git branch -a git branch -a
# 切换分支 # 切换分支
git checkout develop git checkout develop
# 创建一个分支同时切换到这个新分支 # 创建一个名为iss053的分支同时切换到这个新分支
git checkout -b iss053 git checkout -b iss053
# 在iss053分支提交修改
git commit -a -m "添加一些git分支操作"
# 将iss053分支的变更合并到master分支
git checkout master
git merge iss053
# 合并后可以删iss053分支
git branch -d iss053
# 在iss053上做了一些修改
``` ```
## 代码推拉 ## 代码推拉