1

我正在尝试下载私人 git repo。

当我做git clone https://<DEV_USER>:<DEV_PWD>@github.<corpName>.net/Svcs/repo.git

有用!

但我真的不需要所有的 git 历史。我只需要 repo 作为文件目录。因此,我试图存档。

git archive --remote=<DEV_USR>:<DEV_PWD>@github.<corpName>.net:Svcs/repo.git

我收到以下错误

Could not resolve hostname <DEV_USER>: nodename nor servname provided, or not known
fatal: The remote end hung up unexpectedly
4

1 回答 1

0

网址不正确:

  • 如果您使用 SSH,则不会使用 GitHub Enterprise 登录密码,但是git@github.<corpName>.net:Svcs/repo.git(并且您的 SSH 密钥足以对您进行身份验证)

  • 如果您使用您的凭据(登录名/密码<DEV_USR>:<DEV_PWD>),则使用 HTTPS URLhttps://<DEV_USR>:<DEV_PWD>@github.<corpName>.net/Svcs/repo.git

于 2018-10-03T04:52:55.170 回答