其他分享
首页 > 其他分享> > Your branch is up-to-date with 'origin/master'.

Your branch is up-to-date with 'origin/master'.

作者:互联网

根本原因是版本分支的问题
解决办法:

  1. 新建一个分支
$ git branch newbranch 
$ git checkout newbranch
  1. 将你的改动提交到新分支上
$ git add . 
$ git commit -m "update"
  1. 切换到主分支
$ git checkout master 
  1. 新分支提交的改动合并到主分支上
$ git merge newbranch  
$ git push -u origin master
  1. 删除这个分支
$ git branch -D newbranch

标签:origin,newbranch,up,git,master,branch,分支
来源: https://www.cnblogs.com/gongxiansheng/p/11703629.html