打开凭据助手,以便Git将您的密码保存在内存中一段时间:在终端中,输入以下内容:# Set git to use the credential memory cachegit config --global credential.helper cache默认情况下,Git会将您的密码缓存15分钟。要更改默认密码缓存超时,请输入以下内容:# Set the cache to timeout after 1 hour (setting is in seconds)git config --global credential.helper 'cache --timeout=3600'从GitHub帮助