git创建新的分支、提交代码并发起合并请求

2022/6/23 23:25:15

本文主要是介绍git创建新的分支、提交代码并发起合并请求,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 https://www.cnblogs.com/iAmSoScArEd/p/16404267.html 我超怕的

对于已有的仓库,中途开发,git clone 下来修改后,git branch创建新的分支、提交代码并发起git merge合并请求。

 

# 1.先保证未修改代码与master分支一致,更新到主分支最新的代码
git checkout master
git pull


# 2.如果还没创建自己的分支,先创建自己的分支
git branch 自己的分支名字
git checkout 自己的分支名字

# 3.提交自己最新的代码到自己的分支
git add .
git commit -m 'commit desc'
git push -u origin 自己的分支名字

# 4.切换本地主分支,更新本地的代码为远程仓库最新代码,并且发起将你的分支合并到master的请求
git checkout master
git pull origin master
git merge 你的分支名字

# 5.查看提交状态
git status

# 出现下面的 几个commits 使用git push推送的消息说明成功
#On branch master
#Your branch is ahead of 'origin/master' by 2 commits.
#(use "git push" to publish your local commits)
#nothing to commit, working tree clean

# 6.提交代码
git push origin master

 



这篇关于git创建新的分支、提交代码并发起合并请求的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程