如何在Ubuntu下解决Git保存用户名和密码呢?
打开Git 配置文件,该文件中保存着所有的配置信息
vim ~/.gitconfig
修改配置文件,添加下面这一行。
[credential]
helper = store
记住密码
helper = store #用来保存密码,提交一次会自动记住
密码保存一个小时
helper = cache -- timeout 3600 # 密码只保存一个小时
如何在Ubuntu下解决Git保存用户名和密码呢?
vim ~/.gitconfig
[credential]
helper = store
helper = store #用来保存密码,提交一次会自动记住
helper = cache -- timeout 3600 # 密码只保存一个小时