我已经在虚拟机上运行了gitlabhq rails服务器,遵循本教程https://github.com/gitlabhq/gitlab-recipes/blob/master/install/centos/README.md中的1-6步,并启动rails服务器,执行命令sudo -u git -H bundle exec rails s -e production。之后,我创建了用户,使用管理工具,并在此用户下创建了新项目。然后,我试图像往常一样将现有项目推到这个回购。但在最后一步,git push origin master失败,并出现错误

[远程拒绝]master -> master(预接收钩子拒绝)

额外的信息:

1)我还没有通过电子邮件激活链接激活用户(项目所有者),因为我还没有在服务器端配置post服务,我没有找到如何在本手册中做到这一点的说明。

2) Gitlab服务器生成提示如何推送项目到repo,没有repositories/ in路径。我的意思是它生成git@mygitlabhost:user/repo。Git代替git@mygitlabhost:repositories/user/repo。Git是正确的。

3)当我试图调试它时,我在服务器上的repo中打开了预接收脚本,并尝试输出变量(有3个):refs = ARGF。read, key_id = ENV['GL_ID'] and repo_path = Dir。PWD和发现,key_id总是空的。也许问题就在这里……如果是这样,请给我建议如何解决。谢谢


当前回答

对我来说,发生这种情况是因为之前的未决意见不符合某些标准。经过下面的命令,它为我工作 git重置——硬提交 (成功提交的commit id先于不成功提交的commit id)

其他回答

在我的情况下,我的团队领导创建了一个repo(repo是空的),并分配我作为开发人员,所以当我直接推到代码以掌握我所面临的错误![远程拒绝]主->主(预接收钩子拒绝)所以它是如何修复的,他分配给我作为维护者,这样我就可以直接把代码推给主。

以下是我本地机器中解决的问题:

A.首先,确保您使用正确的登录细节连接到Bitbucket服务器(即。您的用户名/密码/SSH密钥)

B. Then, ensure that the name/email address is correctly set in your local Git configuration: Set your local Git configuration for the account that you are trying to push under (the check asserts that you are the person who committed the files) * Note that this is case sensitive, both for name and email address * It is also space sensitive - some company accounts have extra spaces/characters in their name eg. "Contractor/ space space(LDN)".  You must include the same number of spaces in your configuration as on Bitbucket Server.  Check this in Notepad if stuck.

C.如果您使用了错误的帐户,只需切换您的帐户凭据(用户名/密码/SSH密钥),然后重试。

D.否则,如果您的本地配置不正确,您将需要修改它

对于MAC

打开一个TextEdit。应用~ / .gitconfig

注意:您必须修复您试图推送的旧提交。

修改上次提交: > git commit - modify -reset-author    <save并退出打开的提交文件文本编辑器,如果Vim then :wq保存退出> 尝试重新推动你的提交: > git push

这是因为主分支受到保护,以下是清除此错误的步骤。

在你的主分支中创建一个分支git checkout -b new-branch-name 推送新的分支git Push——set-upstream origin new-branch-name 现在远程地将分支合并到主分支。 一旦合并,重置本地主分支git重置-soft HEAD~1 最后git拉

我有一段时间遇到了同样的问题,在我的情况下,我在一个组中工作,克隆了存储库,但在一个单独的存储库中创建了它。发生了两件事

1.—私有创建存储库。 2.—存储库未被分配远程上传所需的权限。

您可以检查是否创建了一个新的公共存储库,并更改远程存储库的路径,这样就可以测试它。

在我的情况下,因为我在一个组中工作,只需更改我的url到创建者库,就是这样,推送,它工作得很完美,我希望我能帮助你。

git remote set-url origin https://github.com// <——URL

Git push -u origin main

我已经按照heroku日志img https://devcenter.heroku.com/articles/buildpacks#detection-failure的指示(使用cmd: heroku日志->显示您的错误) 然后执行cmd: "heroku buildpacks:clear"。最后,它对我有用!