8.git如何新建分支
Posted janet11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8.git如何新建分支相关的知识,希望对你有一定的参考价值。
1.切换到基础分支,如主干
git checkout master
2.创建并切换到新分支demo
git checkout -b demo
3.git branch查看已经在demo分支
4.更新分支代码并提交
git add *
git commit -m "demo"
git push origin demo
5.git代码管理界面能看到新提交的分支
以上是关于8.git如何新建分支的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段