欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

git在线上新建分支的方法

程序员文章站 2023-09-29 09:50:40
在线上新建分支 git pull 拉一下代码 分支就弄到本地了 git checkout 分支名 git status 查看当前分支 git branches 看分支 ....

在线上新建分支

git pull 拉一下代码 分支就弄到本地了

git checkout 分支名

git status 查看当前分支

git branches 看分支

...

...

...

git add .

git commit -m "change"

git push 提交到分支上

git checkout origin/master 切换到master分支

git merge origin/index-swiper 把index-swiper合成到master分支

git push 把master分支提到线上