在%HOME%目录中,一般为C:\users\Administrator,也可以是你自己创建的系统用户名目录,反正都在C:\users***中。创建.git-credentials文件。
Windows中创建以.开头的文件的方法:
1:新建test.txt记事本,然后另存为.git-credentials
2:使用git bash
- 1
创建完成后,在该文件中输入:
https://username:password@github.com
注:username对应你的用户名,password对应你的密码
然后再进入git bash中
- 1
store为永久存储,当然也可以设置临时的
- 1
默认为15分钟,如果想设置保存时间的话,可以输入:
- 1
这样就设置了一个小时的有效时间。
执行完后查看%HOME%目录下的.gitconfig文件,会多了一项:
[credential]helper=store
重新开启git bash会发现git push时不用再输入用户名和密码