在做项目时,发现使用Git push每次都要输入账号和密码,如此机械性的重复输入大大降价了工作效率,因此有必要找到免输账号和密码的方法!
修改配置文件,打开Git Bash:
< 大专栏 Caching your Github password in Gitdiv class="highlight">cd ~ //进入根目录
touch .git-credentials
vim .git-credentials
https://username:password@github.com
git config --global credential.helper store