Git要求密码进行Internet连接

时间:2015-07-10 09:08:24

标签: git bash github

Git for Windows(Git Bash),OS Windows 7.计算机属于公司领域。

为了获得GitHub存储库的机会,我在.gitconfig文件中添加了这些设置:

[http]
    proxy = http://HYPROSTROY\\Developer:my_password@proxy2:8080

[https]
    proxy = https://HYPROSTROY\\Developer:my_password@proxy2:8080

当我启动像

这样的东西时,它工作正常
git clone https://github.com/nunit/nunit.git

但我不想在.gitconfig中保存我的密码。我希望Git Bash问我关于我的密码(它更安全)。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

我尝试使用 Git for Windows 1.9.5 (来自here的Windows的最新版本)我的.gitconfig文件中的代理设置变体:

[http]
  proxy = http://@proxy2:8080
[https]
  proxy = https://@proxy2:8080

但它不适用于Git的那个(v1.9.5)版本。

我卸载了v1.9.5并从here安装了 Git for Windows Git-2.4.5.1-4th-release-candidate 。我知道,这个设置适用于Git for Windows Git-2.4.5.1-4RC!

所以,如果我使用 Git for Windows Git-2.4.5.1-4th-release-candidate 而不是.gitconfig文件中保存我的密码> Git for Windows 1.9.5 。