git config --global credential.helper store
打开~/.gitconfig文件,会发现多了一项:
[credential]
helper = store
此时,再次push 输入用户名和密码,以后再次push即可免去输入用户名和密码
git config --global credential.helper store
打开~/.gitconfig文件,会发现多了一项:
[credential]
helper = store
此时,再次push 输入用户名和密码,以后再次push即可免去输入用户名和密码
转载于:https://www.cnblogs.com/yimingwang/p/9593166.html