赞
踩
git reset --hard 36620e
git push origin <branch> -f
其中36620e就是你要回退的版本的commit id的前面6位。
$ git push origin master -f
Total 0 (delta 0), reused 0 (delta 0)
remote: GitLab: You are not allowed to force push code to a protected branch on this project.
To https://xxx.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://xxx.git'
git项目默认受保护的分支禁止被force push操作。
在版本库设置中,关闭该分支保护。
关闭分支保护后,重新执行force push操作,git提交回滚完成。
$ git push origin master -f
Total 0 (delta 0), reused 0 (delta 0)
To https://xxx.git
+ bbe65dc...800c799 master -> master (forced update)
git revert 36620e
git push origin master
其中36620e就是你要回退的版本的commit id的前面6位。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。