git新建分支提交代码
Posted 柳鲲鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git新建分支提交代码相关的知识,希望对你有一定的参考价值。
- 检查状态
$ git status
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
- 新建分支
$ git branch slantdirection
- 切换分支
$ git checkout slantdirection
Switched to branch 'slantdirection'
$ git status
On branch slantdirection
nothing to commit, working tree clean
- 提交代码
git push --set-upstream origin slantdirection
以上是关于git新建分支提交代码的主要内容,如果未能解决你的问题,请参考以下文章