bash:git-receive-pack:未找到命令

bash:git-receive-pack:未找到命令

我刚刚更改了我的服务器的 git 远程,现在当我尝试使用时git push web master(在暂存和提交更改之后),我得到了以下信息:

bash: git-receive-pack: command not found
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

按下回车键后它会立即出现,因此几乎没有时间检查服务器。我已经尝试添加export PATH=$PATH:/usr/local/git/bin.bashrc我的主目录中。我使用 Mac OS X,10.9.5。

谢谢你的帮助 :)

答案1

只需在远程机器上安装 git:

sudo apt install git

相关内容