远程仓库
Posted y雪莉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程仓库相关的知识,希望对你有一定的参考价值。
github 新建分支的作用,当你在一个分支做请求时,你也能继续在其他分支上工作。
查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git checkout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>
以上是关于远程仓库的主要内容,如果未能解决你的问题,请参考以下文章