4

我正在尝试为我们的团队评估 git,其中一项要求是使用 HTTPS 作为传输方法。我一直在尝试遵循git-http-backend文档以及一些稀疏的博客来使用新的智能 HTTP 传输进行设置,但我只是没有让它工作。我知道这可能是愚蠢的,但我绞尽脑汁却无济于事。不要假设对 git 有任何真正的了解,我对这个工具还很陌生。


现在我可以很好地通过 HTTP 克隆,但是当我尝试推送时,客户端得到:

$ git push
Username:
Password:
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 291 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
error: unpack failed: unpack-objects abnormal exit


服务器 Apache 错误日志说:

错误:将对象添加到存储库数据库的权限不足 ./objects

致命:无法写入对象


阿帕奇配置:

SetEnv GIT_PROJECT_ROOT /opt/git
SetEnv GIT_HTTP_EXPORT_ALL
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/

<Location /git>
        AuthType Basic
        AuthName "Private Git Access"
        Require valid-user
        AuthUserFile /opt/git/passwords
</Location>


显然我的第一个想法是文件权限,所以我做了一个快速的chown -R apache: /opt/git

# ls -l /opt/git
drwxr-xr-x. 7 apache apache 4096 Aug 12 11:06 project.git

但我仍然得到同样的错误。

谢谢,我非常感谢我能得到的任何帮助。

4

2 回答 2

1

解决方案可能是在服务器上存储库的组权限中。

  1. cd 到 /opt/git
  2. sudo chgrp -R apache project.git

我的东西 apache 通常作为 www-data 运行,而不是 apache,所以该组也可能是错误的

我使用 gitosis 并通过服务器帐户而不是 Apache 管理帐户,但是用这种解决方案解决了我同样的问题

于 2011-08-12T16:04:29.840 回答
1

尝试运行:

git repo-config core.sharedRepository true

这为我解决了类似的问题。从文档:

core.sharedRepository

如果为 true,则存储库可在组中的多个用户之间共享(确保所有文件和对象都是组可写的)。

您能否验证此处给出的步骤(这绝对是权限/组问题):

http://parizek.com/?p=177

于 2011-08-12T16:06:12.163 回答