无法将代码推送到gitlab存储库

问题描述 投票:0回答:1

项目所有者(michael365)维护一个存储库,并为我提供了开发人员访问权限。我试图推动代码,但我收到此错误

remote: GitLab: API is not accessible
    To gitlab.com:michael365/bim.git
     ! [remote rejected] master -> master (pre-receive hook declined)
    error: failed to push some refs to '[email protected]:michael365/bim.git'

虽然我在SSH部分设置了公钥,但它仍然不起作用。我发出以下命令

$ git add .

$ git commit -m "Adding Initial Code"
On branch master
nothing to commit, working tree clean

$ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin master

$ git push --set-upstream origin master
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 868 bytes | 868.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: GitLab: API is not accessible
To gitlab.com:michael365/bim.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to '[email protected]:michael365/bim.git'

任何的意见都将会有帮助

github gitlab git-repo
1个回答
1
投票

pre-receive hook declined表示在对您推送的更改进行内容检查失败后,您的推送被远程存储库拒绝。

向远程回购管理员询问拒绝推送的检查。通常,您会收到一条错误消息,说明检查失败的原因。

© www.soinside.com 2019 - 2024. All rights reserved.