git创建新分支

  • 创建并切换到新分支
git branch -b newbranch
  • 把新分支push到远程
git push origin newbranch
  • 在新分支开发完后,提交代码
git status
git add .
git commit -m 'XXXX'
git push
  • 合并新分支到主分支
//查看分支
git branch

//切换到主分支
git checkout master

//更新
git pull

//合并到主分支
git merge newbranch

//push 到主分支
git push

你可能感兴趣的:(git创建新分支)