gpt4 book ai didi

git-bash - 克隆 git 仓库的 Bash 脚本

转载 作者:行者123 更新时间:2023-12-02 19:45:59 25 4
gpt4 key购买 nike

remoteHost=git@github.com
remoteUser=Spiderworks007
remoteDir=~/repositories/exercism-haskell.git
remoteRepos=$(ssh -l $remoteUser $remoteHost "ls $remoteDir")

这是我收到的错误。我是 bash 脚本和 git repo 的新手。

You appear to be using ssh to clone a git:// URL.
Make sure your core.gitProxy config option and the
GIT_PROXY_COMMAND environment variable are NOT set.

最佳答案

您无法在 github.com 上ssh -l(登录),这意味着您无法以您的身份登录 github.com。

您可以使用 GitHub 存储库的 SSH URL 来克隆它:

git clone git@github.com:Spiderworks007/exercism-haskell.git

您可以调整脚本来执行 git clone 命令。

关于git-bash - 克隆 git 仓库的 Bash 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49662903/

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