git中查看和设置 用户名、密码 并记住用户名、密码
用户名和邮箱地址的作用
用户名和邮箱地址是本地git客户端的一个变量,不随git库而改变。
每次commit都会用用户名和邮箱纪录。github的contributions统计就是按邮箱来统计的。
修改密码
git config --global credential.helper store (输入这个命令后以后只要在输入一次用户名密码)
查看用户名和邮箱地址:
$ git config user.name
$ git config user.email
修改用户名和邮箱地址:
$ git config --global user.name "username"
$ git config --global user.email "email" git config credential.helper store (仅当前项目保存账号和密码)
git config credential.helper store (仅当前项目保存账号和密码)
git config --global credential.helper store (对全局应用账号和密码)
git config –global credential.helper cache (全局默认记住15分钟)
git config credential.helper ‘cache –timeout=7200’ (全局默认记住两小时)