解决 git extensions 每次提交需要输入用户名和密码

打开git bash

输入用户名和密码

git config --global user.name "username"

git config --global user.email "email.@xx.com"

git config --global user.password "password"

git config --global credential.helper store

这样就不用每次输入用户名和密码了,全局配置了相同的账户和密码

上一篇:HDU 5087 (线性DP+次大LIS)


下一篇:coffeeScript中类的多态[学习篇]