是否可以在我的本地计算机上存储远程Git repo的用户凭据,这样我每次拉动时都不会被要求提供这些凭据?
感谢
答案 0 :(得分:1)
克隆时需要使用ssh密钥和git
协议(通过ssh):
git clone git@git-host.com:user/repo.git
如果您使用github
作为git服务器,可以按照此documentation进行操作,其中介绍了如何创建和使用ssh密钥。
如果您已使用https
协议克隆了回购,则可以按照以下步骤更改原产地:
git remote remove origin
git remote add origin git@git-host.com:user/repo.git