每次执行git push或pull都要求输入密码
git config --global credential.helper store
或者直接在~/.gitconfig全局配置文件或者.git/config当局配置文件中加入这段配置:
[credential] helper = cache
每次执行git push或pull都要求输入密码
git config --global credential.helper store
或者直接在~/.gitconfig全局配置文件或者.git/config当局配置文件中加入这段配置:
[credential] helper = cache