git每次pull、push都要求输入用户名和密码
解决方法: 保存用户本地凭证即可,这样每次git操作时,使用已保存的凭证就OK了。
1 ## 全局 2 git config --global credential.helper store 3 4 git config --global user.username "username" 5 git confgi --global user.password "password"
1 ## local 2 git config --local credential.helper store 3 4 git config --local user.username "username" 5 git confgi --local user.password "password"标签:username,git,--,密码,用户名,user,password,config From: https://www.cnblogs.com/Don/p/17427468.html