vi .git/config

在未尾添加(pull一次代码,即可保存帐号和密码)

[credential]
        helper = store

#命令行快速添加 
cat <<EOL >>.git/config
[credential]
        helper = store
EOL

命令行操作

# 保存本地仓库的账号
git config --local credential.helper store

# 保存git全局账号
git config --global credential.helper store