我正在尝试下载私人git仓库。
我git clone https://<DEV_USER>:<DEV_PWD>@github.<corpName>.net/Svcs/repo.git
有效!
但是我真的不需要所有的git历史记录。我只需要回购作为文件目录。因此,我试图存档。
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
答案 0 :(得分:0)
URL不正确:
如果您使用的是SSH,则不会使用GitHub Enterprise登录密码,而是使用git@github.<corpName>.net:Svcs/repo.git
(并且您的SSH密钥足以对您进行身份验证)
如果您使用凭据(登录名/密码<DEV_USR>:<DEV_PWD>
),则使用HTTPS URL https://<DEV_USR>:<DEV_PWD>@github.<corpName>.net/Svcs/repo.git