gpt4 book ai didi

git push 到远程仓库 "Could not read from remote repository"

转载 作者:IT王子 更新时间:2023-10-29 01:00:08 24 4
gpt4 key购买 nike

我搜索了一段时间,但找不到解决我的问题的方法。

我有一个服务器,我可以使用用户名 git 和本地 git 存储库通过 ssh 连接。
现在我想将我的本地存储库推送到服务器上新创建的存储库。

这是我做的:

  • /home/git/test.git 中创建了一个 git 仓库
  • 将存储库初始化为裸
  • 在本地机器上添加了远程仓库
    git remote add test ssh://git@serverIp:/home/git/test.git
  • 现在我执行了推送命令:
    git push测试大师

I always get the

fatal: could not read from remote repository

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

我在本地 windows 7 机器上工作,想上传到 linux 服务器。
我可以使用 git 用户通过 ssh 登录。我也尝试以 root 用户身份执行此操作(让事情运行一次),结果相同。
我从来没有被要求提供 ssh 密码

我真的不知道我做错了什么。
在你称之为重复之前,我搜索了很多这个问题,但似乎没有人谈论同一个问题。

更新:

  • “哪个 git”返回/usr/bin/git
  • PATH echo 包括/usr/bin
  • id_rsa 和 id_rsa.pub 文件都已设置并输入密码
  • ssh git@serverIp git-receive-pack 也可以工作并返回/usr/bin/git-receive-pack
  • ssh git@serverIp ls/home/git/test.git 工作
  • 所有相关目录都是 chmod 755
  • git 是存储库的所有者
  • auth.log 文件在尝试推送命令时没有获得新条目
  • GIT_TRACE=2 git push test master 返回:

    'C:\Program Files (x86)\PuTTY\plink.exe' '-batch' 'git@serverIp' 'git-receive-pack '\''/home/git/test.git'\''' fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

最佳答案

在这种情况下,在 putty 上使用 openssh 是关键。


原始答案(调试提示)

I can log in via ssh with the git user.

这意味着这有效:

ssh git@serverIp

您确实定义了一个 HOME 变量,并且在 % 中定义了 ssh 公钥/私钥 (id_rsa/id_rsa.pub)主页%/.ssh/

This question建议一个不同的网址:

git remote set-url test git@serverIp:/home/git/test.git

确保您确实将 git 存储库创建为 git(而不是 root,当您创建 git 帐户时,如 this question 中所示)。
ssh git@serverIp "which git" 应该返回 git 可执行文件的路径。

同时检查所有父目录是否为用户 git 或组 gitgroup 设置了相关的 x(执行)位,运行 ls -ld/home/home/git/home/git/test.git.
此外,可以通过以下方式获取有关 git 命令的更多信息:

  • git push --verbose
    或者:
  • GIT_TRACE=2 git push test master

如果您有带密码的 ssh 私钥,最好先用没有密码保护的 ssh 私钥测试这些 ssh 命令,看看问题是否仍然存在。
或者,您可以保留该受密码保护的 ssh key ,但 double-check your .bashrc as in this answer .


对于任何 ssh 连接问题(需要 git 密码的地方),请检查:


在你的情况下,因为它适用于 ssh git@serverIp(交互式安全 shell),但不适用于 git(它打开一个非交互式安全 shell),看看 this thread , 其中引用 this one :

When ssh is started with a commandline, a non-interactive non-login shell is started.
However...bash does not use $BASH_ENV in this case, so setting it in ~/.ssh/environment (e.g. to /etc/profile) doesn't help.
What bash does is source /etc/bashrc and ~/.bashrc.

确保 /etc/profile 确实定义了 path for git , 因为 non-login account could be used here (这里似乎就是这种情况,因为 ssh git@serverIp "which git" 有效,而且 ssh git@serverIp "git --version" 也应该有效)。

但还要检查正确的问题,并在 /home/home/git/home 上测试 chmod 755/git/test.git.

关于git push 到远程仓库 "Could not read from remote repository",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16118797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com