解决每次git pull、git push都需要输入账号和密码的问题

其实就是配置.gitconfig

即:

git config --global user.email "xxxxx"
git config --global user.name "user_name"
git config --global credential.helper store

输入一次用户名和密码后,之后就不用了

此时.gitconfig的内容如下:

[user]
    name = user_name
    email = xxxxx
[credential]
    helper = store
文章目录