全局的話:
git config --global credential.helper cache
只是當前repo的話:
git config credential.helper cache
這兩句話的做的工作是一樣的,就是在~/.gitconfig
全局配置文件或者.git/config
當局配置文件中加入這段話:
[credential]
helper = cache
所以直接找到配置文件加入這兩句話也是一樣的。
上面三種配置都完成后曹鸠,git push的時候就會記住密碼彻桃,下次不用再輸入了。
不過有個問題是组力,最好在全局配置user.name 和user.email腥椒,不然的話還是需要每次都讓你輸入用戶名密碼笼蛛。