我在Windows Server 2003上遇到git / gitolite问题(虽然我怀疑操作系统不是问题的根源。)
如果我这样做:
git clone git@server:test.git
我无法克隆:
Cloning into test...
git@server's password:
fatal: 'test.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
如果我这样做:
git clone git@server:repositories/test.git
我可以克隆,但我无法提交:
git@server's password:
Counting objects: 3, done.
Writing objects: 100% (3/3), 229 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: ENV GL_RC not set
remote: BEGIN failed--compilation aborted at hooks/update line 20.
remote: error: hook declined to update refs/heads/master
To git@dev.relocationmoverservices.com:repositories/test.git
! [remote rejected] master -> master (hook declined)
error: failed to push some refs to 'git@server:repositories/test.git'
如果我在.gitolite.rc中查看$ REPO_BASE,我会看到:
# ------------------------------------------------------------------------------
# variables that should NOT be changed after the install step completes
# ------------------------------------------------------------------------------
$REPO_BASE="repositories";
谁能告诉我该怎么办?重新安装gitolite?改变变量?这不是问题的原因吗?
答案 0 :(得分:1)
乔希,
您使用的语法仅适用于未执行远程gitolite设置的用户。 (出于这个原因,我建议使用gitolite docs中的备用管理设置)要为管理员用户克隆repos,你必须使用git clone git @ gitolite:repot.git语法。添加遥控器时,您还必须使用该语法,但它只适用于您的用户。
同样,使用基于管理/服务的设置可以避免这种情况。 http://sitaramc.github.com/gitolite/doc/1-INSTALL.html#_install_methods_and_deciding_which_one_to_use