- Git push 时免输入账号密码的方法
在做项目时,发现使用Git push每次都要输入账号和密码,如此机械性的重复输入大大降价了工作效率,因此有必要找到免输账号和密码的方法!
修改配置文件,打开Git Bash:
大专栏 Caching your Github password in Gitdiv class="highlight">
cd ~ //进入根目录
touch .git-credentials
vim .git-credentials
https://username:[email protected]
git config --global credential.helper store
完。
此时文件 ~/.gitconfig末尾处会多出两行:
【Ref】:
[1] Git Push 免输用户名和密码
原文地址:https://www.cnblogs.com/liuzhongrong/p/12249310.html
时间: 2024-10-12 23:42:44