本文就来给大家介绍两种实现方法,下面话不多说了,来一起看看详细的介绍吧
方法一
首先在home目录下创建.git-credentials,然后输入:
https://{username}:{password}@github.com
如果有多个,一行一个,:wq保存退出
然后在终端执行命令
git config --global credential.helper store
如果我们看到~/.gitconfig文件下存在下面的内容就代表成功了
[credential] helper = store
方法二
这个方法需要git版本需要>=1.7.10才行,用git version查看版本号看是否支持,不支持又想用,那就自行升级git版本吧
终端下执行
git config --global credential.helper cache
默认会缓存密码15分钟,如果想改的更长,比如1个小时,那么可以
git config --global credential.helper 'cache --timeout=3600'
这里的3600指的是秒,其他时间自行更改即可