码迷,mamicode.com
首页 > 其他好文 > 详细

Git 创建新分支并提交到远程仓

时间:2019-11-01 09:55:20      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:提交   git merge   new   commit   add   xxx   git pull   check   ast   

Git 创建新分支并提交到远程仓
step1,在本地新建分支

git branch newbranch
step2:把本地分支push到远程

git push origin newbranch
step3:切换到该分支

git checkout newbranch
step4:查看本地修改

git status
step5:添加本地修改

git add .
step6:commit修改

git commit -m ‘XXXX‘
step7:push代码

git push
step8:查看分支

git branch
step8 :切换到主分支

git checkout master
step9:更新

git pull
step10:合并到主分支

git merge newbranch
step11:push 到主分支

git push

Git 创建新分支并提交到远程仓

标签:提交   git merge   new   commit   add   xxx   git pull   check   ast   

原文地址:https://www.cnblogs.com/geass-jango/p/11775079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!