我面临错误,当推送代码到GIT后,rebase。我正在使用强制推送,但它也失败了。我已经从开发中对my_branch进行了重新基址。
我试过了
git push --force origin my_branch它也会产生错误..
DENIED by fallthru : (hook declined)
Enumerating objects: 52, done.
Counting objects: 100% (52/52), done.
Delta compression using up to 4 threads
Compressing objects: 100% (19/19), done.
Writing objects: 100% (32/32), 5.58 KiB | 1.39 MiB/s, done.
Total 32 (delta 8), reused 0 (delta 0)
remote: FATAL: + refs/heads/my_branch fmea/dev_fmea_maven_webapp kumard2 DENIED by fallthru
remote: error: hook declined to update refs/heads/my_branch
To ssh://codex.cro.st.com/fmea/dev_fmea_maven_webapp.git
! [remote rejected] my_branch -> my_branch (hook declined)
error: failed to push some refs to 'ssh://gitolite@codex.cro.st.com/fmea/dev_fmea_maven_webapp.git'我期待着使用强制推送,它应该可以工作。
发布于 2019-07-22 12:38:48
"DENIED by fallthru“指向由管理的远程存储库。
您可以请求一个admin for tracing the gitolite access control decision
gitolite access -s dev_fmea_maven_webapp fmea W+ any这将使您对现有规则有一个概念。
https://stackoverflow.com/questions/57138995
复制相似问题