在Git上添加用户名和密码默认值

时间:2014-08-19 10:18:30

标签: git

是否可以在我的本地计算机上存储远程Git repo的用户凭据,这样我每次拉动时都不会被要求提供这些凭据?

感谢

1 个答案:

答案 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