git extensions 记住用户名和密码

鲁炳
2023-12-01

在git extensions的根目录或者项目的根目录,右键打开git bash ,然后执行以下命令,重启git extensions后,输入一次用户名和密码后,git extensions将记住,后续不需要再次输入。

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
 

 类似资料: