彭彭脆

导航

本地代码提交gitlab,合并分支代码至主分支

主分支代码提交:
1、git init (在目录中创建新的git仓库)
2、git add . (暂存所有更改)
3、git commit -m "first commit"
4、git pull / git pull origin master
5、git push / git push oringin master


子分支代码提交:
1、git branch -a(查看所有分支)
2、git branch(查看当前分支)
3、git branch test(新建test分支)
4、git checkout test(切换到test分支)
5、git add .
6、git commit -m "first commit"
7、git pull / git pull origin test
8、git push / git push oringin test

 

子分支代码合并至主分支(例:test合并至master)

1、git checkout master(切换至主分支)
2、git pull origin master (合并前要先更新主分支最新代码)
3、git merge test(test分支的代码合并至master,注意:这一操作或有代码冲突,要解决冲突代码
4、进行git add . 、git commit -m "提交冲突"(若没有冲突,此操作省略)
5、git push origin master

posted on 2021-01-28 18:17  彭彭脆  阅读(309)  评论(0编辑  收藏  举报