使用credential helper保存用户名和密码
Git提供了credential helper的功能,可以在本地保存用户名和密码,以便在每次Git命令执行时,不需要重新输入认证信息。
Git支持多种credential helper,包括cache、store、或者其他第三方提供的credential helper。其中,cache credential helper是Git默认的方式,可以在指定的时间段内缓存用户名和密码。
以下是如何使用credential helper保存用户名和密码的示例:
- 打开命令行终端,进入Git项目所在的目录。
- 使用以下命令设置credential helper为cache:
git config --global credential.helper cache
这将把credential helper设置为cache,保存认证信息到内存中,默认的缓存时间为15分钟。
- 执行Git命令,如push或pull,第一次会要求输入用户名和密码。之后,在缓存时间内执行Git命令时,不需要输入认证信息。
git push origin master
- 如果希望修改缓存时间,可以使用以下命令设置新的时间(以2小时为例):
git config --global credential.helper 'cache --timeout=7200'
这将修改缓存时间为2小时(单位为秒)。