当前位置:   article > 正文

解决git push时的too_many_commits提示

解决git push时的too_many_commits提示

解决git push时的too_many_commits提示

提示内容

push时报错如下:
Sorry, you were trying to upload xxxxxx commits in one push

原因分析

这个应该是因为在提交规则里配置了 一次只允许提交一个 commit,这样当 icode 上有 commit 没有合入时,再次提交一次新的 commit 的话会触发这个错误。

解决方案

git status 检查本地是否存在多个commit
在这里插入图片描述

如果存在多个commit,或者commit是已经合入的情况

执行以下命令撤销提交后再次commit,push

git pull --rebase
git reset --soft origin/dev001(分支名)
git commit -m '吧啦吧啦吧啦'
git push origin HEAD:refs/for/dev001(分支名)
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/654282
推荐阅读
相关标签
  

闽ICP备14008679号