git commit提示Your branch is up-to-date with 'origin/master'
今天提交git仓库的时候,遇到了问题,提示Your branch is up-to-date with 'origin/master'.查了些资料后,发现其根本原因是版本分支的问题这时候我们就需要新建一个分支$ git branch newbranch 然后检查分支是否创建成功$ git branch 会有如下提示(前面的*代表的是当前你所在的工作分支)* ...