无法推送 git 存储库



我正在使用Windows 8,PuTTY和Git 1.8.5.2.msysgit.0。

我有一个在 Debian 服务器上运行的中央 git 存储库。我可以在我的多台 debian 机器之间克隆、推送、拉动、合并(做所有事情)没有问题。

我可以使用git clone [user]@[host]:/usr/git/site.git克隆和拉取 git 存储库,这将克隆 git 存储库没有问题。

问题是当我尝试将 git 上的更改推送到中央存储库时,出现此错误:

warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
  git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
  git config --global push.default simple
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
error: insufficient permission for adding an object to repository database ./objects
fatal: failed to write object
error: unpack failed: unpack-objects abnormal exit
To [user]@[host]:/usr/git/site.git
 ! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to '[user]@[host]:/usr/git/site.git

我无法弄清楚出了什么问题,因为如果我从另一台 Linux 机器推送到中央存储库,它可以正常工作。

当尝试推送的用户对远程服务器中的 git 存储库没有写入访问权限时,会发生这种情况。您可以按如下方式执行此操作:

$ ssh me@myserver
$ cd repository.git
$ sudo chmod -R g+ws *
$ sudo chgrp -R mygroup *
$ git config core.sharedRepository true

相关内容

  • 没有找到相关文章

最新更新