无法将代码推送到 gitlab 存储库
Trouble pushing code to gitlab repository
项目所有者 (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 'git@gitlab.com:michael365/bim.git'
虽然我在 SSH 部分设置了 public 密钥,但它仍然不起作用。我正在发出以下命令
$ 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 'git@gitlab.com:michael365/bim.git'
任何建议都会有所帮助
pre-receive hook declined
表示在对您推送的更改进行内容检查失败后,您的推送被远程存储库拒绝。
询问远程仓库的管理员是什么检查拒绝了您的推送。通常您会收到一条正确的错误消息,说明检查失败。
项目所有者 (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 'git@gitlab.com:michael365/bim.git'
虽然我在 SSH 部分设置了 public 密钥,但它仍然不起作用。我正在发出以下命令
$ 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 'git@gitlab.com:michael365/bim.git'
任何建议都会有所帮助
pre-receive hook declined
表示在对您推送的更改进行内容检查失败后,您的推送被远程存储库拒绝。
询问远程仓库的管理员是什么检查拒绝了您的推送。通常您会收到一条正确的错误消息,说明检查失败。