git commit出错:Your branch is up-to-date with 'origin/master'

今天git commit的时候,遇到了如截图所示的问题,提示Your branch is up-to-date with ‘origin/master’.

查了些资料后,发现其根本原因是版本分支的问题

这时候我们就需要新建一个分支

git branch newbranch

然后检查分支是否创建成功

git branch

会有如下提示(前面的*代表的是当前你所在的工作分支)

然后切换到你的新分支

git checkout newbranch

如果不放心,还可以 $ git branch确认下

然后将你的改动提交到新分支上

git add .

git commit -m “update this file”

然后git status检查是否成功

然后切换到主分支

git checkout master

然后将新分支提交的改动合并到主分支上

git merge newbranch

然后就可以push代码了

git push -u origin master

最后还可以删除这个分支

git branch -D newbranch

END

作者:李佳明同学
链接:https://www.jianshu.com/p/e25c763b9816
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(Git,/,SVN)