git存储用户名与密码

git config credential.helper store

 

 

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=3600"

 

windows系统下:
 

Finally, launch a command prompt and type:

git config --global credential.helper winstore

Or you can edit your .gitconfig file manually:

[credential]
    helper = winstore
git config --global credential.helper store
posted @ 2014-03-03 14:10  wangkangluo1  阅读(24576)  评论(0编辑  收藏  举报