git账号全局配置,配置了也需要重复输入账号密码处理
设置全局参数
$ git config --global user.name 'name' $ git config --global user.email 'email'
如果还是出现要输入账号密码就执行下面这个,然后下一次输入账号密码提交以后就会记住账号密码啦
$ git config --global credential.helper store
设置全局参数
$ git config --global user.name 'name' $ git config --global user.email 'email'
如果还是出现要输入账号密码就执行下面这个,然后下一次输入账号密码提交以后就会记住账号密码啦
$ git config --global credential.helper store