git创建新分支

2019-07-08  本文已影响0人  Ci_ci
git branch -b newbranch
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
上一篇 下一篇

猜你喜欢

热点阅读