一、git commit时错误提示原文:
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
二、git commit时错误提示截图:
三、该错误产生原因:
本地和仓库里的代码相同,本地并没有新代码的。所以也就是无新内容更新。
四,解决:
方案一:新建分支,git commit到分支,根据需要merge到maste,然后push到仓库。
方案二:修改本地代码,然后重新git commit 并push到仓库。