我之前就是每一次操作都要输入用户名和密码,繁琐得很。现在给各位分享下git永久保存账户名和密码。
方法一:
安装好git之后一般会在C盘的C:\Users\Administator目录下生成 .gitconfig配置文件。用文档编辑工具打开该文件
添加:
[user]
name = wb-ly409739 //你的用户名
email = [email protected] //你的git邮箱账号
[credential]
helper = store
如图:
然后保存就可以了。
方法二:
直接在git bash 中执行命令:git config --global credential.helper store
在输入一次账号密码就可以保存了
文章:https://blog.csdn.net/lyly4413/article/details/80691751
标签:git,helper,账号密码,保存,永久,免去,输入 From: https://www.cnblogs.com/AntonioSu/p/16879754.html