windows中让git记住用户名和密码

 找到windows用户目录下的.gitconfig文件(如果没有找到就自己手动新建一个):

‪C:\Users\tang\.gitconfig

打开,并添加:

[user]
	name = tangzhichao
	email = [email protected]
[credential]
	helper=store

保存并关闭。

此时如果使用git提交,每次提交仍然需要输密码,原因是没有安装git windows认证模块,需要额外安装,安装步骤如下:

打开https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/latest

找到GCMV-xxxx.exe的文件进行下载,然后安装即可。

 

 

你可能感兴趣的:(开发工具,Windows,git,windows,保存用户名密码)