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新建分支提交代码的主要内容,如果未能解决你的问题,请参考以下文章

git没有提交的代码如何迁移到新建分支

8.git如何新建分支

新建分支之提交代码

git提交本地代码到新分支

Java开发者-Git使用

git提交时,新建分支,提交内容,再合并到主分支