git存储用户名与密码

来源:互联网 发布:淘宝达人也能赚佣金吗 编辑:程序博客网 时间:2024/06/07 20:13
git config --global credential.helper cache
... which tells git to keep your password cached in memory for (by default) 15 minutes. You can set a longer timeout with:
git config --global credential.helper "cache --timeout=86400"
0 0