sh 使用特定的SSH私钥克隆git repo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用特定的SSH私钥克隆git repo相关的知识,希望对你有一定的参考价值。

# option 1
ssh-agent bash -c 'ssh-add private.key; git clone git@example.com/repo.git'

# option 2
eval `ssh-agent`
ssh-add id_rsa
git clone git@example.com:user/repo.git
ssh-add -D

以上是关于sh 使用特定的SSH私钥克隆git repo的主要内容,如果未能解决你的问题,请参考以下文章

带有私钥和公钥的 SSH GIT 克隆

如何使用私钥克隆 GIT 存储库

在克隆之前更改 SSH 远程上的 Git 分支

如何使用 GIT 扩展在另一台 PC 中克隆另一个 repo?

用于克隆私有 git repo 的 Dockerfile

使用GIT_SSH错误使用自定义SSH进行Git克隆