15

我正在尝试通过 http 克隆一个私有 git 存储库。这里有一个类似的问题:Git clone using http with user and password

有没有办法在不输入用户/密码的情况下进行 git clone 提示?

当我尝试这样做时:

prodroom15:mquimiro$ git clone https://github.com/user:password/Automator.git
Cloning into 'Automator'...
Username for 'https://github.com': 
Password for 'https://github.com': 

我将如何做到这一点,这样我就不必手动输入用户/密码?

请注意,https://github.com/user/Automator.git在提示符下进行正常和手动输入用户/密码可以正常工作。

4

1 回答 1

22

我认为语法实际上https://user:password@github.com不是https://github.com/user:password.

如果您使用的是 Git 1.7.9 或更高版本,请考虑使用更安全的凭证助手机制

于 2012-11-08T22:00:35.367 回答