赞
踩
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(分支名)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。