标签:如何 用户名 class tor back .com ade 安全 txt
每次git push 都要输入用户名和密码。
虽然安全,但在自己电脑上每次都输有些麻烦,如何记住用户名和密码呢?
试了很多方法,找到这个最简单,亲测可行。
当你配置好git后,在C盘C:\Users\administrator下的 .gitconfig 的文件(如果找不到,直接搜索),里面会有你先前配好的name 和email,只需在下面加增加credential:
[user]
name = xxxxxx
email = xxxxxx@abc.com
[credential]
helper = store
下次再输入用户名和密码时,git就会记住,从而在
C:\Users\administrator目录下形成一个.git-credentials 文件,里面就是保存的你的用户名和密码。
https://username:yourpassword@git.oschina.net
这样以后再连接git.oschina代码库时,就不用再输入用户名和密码了!
TortoiseGit 连接Git服务器不用每次输入用户名和密码的方法
标签:如何 用户名 class tor back .com ade 安全 txt
原文地址:http://www.cnblogs.com/bldf/p/6052459.html