参考链接:https://www.jianshu.com/p/e946acf9f26e
前提,使用http方式clone
1、git config --global credential.helper store
2、git config --list
出现credential.helper=store说明操作成功。
后面操作的时候只需要输入一次密码之后,就可以免密码操作了。
git账号密码输入错误后,再次操作会自动使用上次输入错误的账号密码:
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://xxx.git/'
设置清空git保存的账号密码并每次操作时强制输入账号密码,即git不自定保存账号密码
git config --system --unset credential.helper
设置git自动保存输入的账号密码
git config --global credential.helper store