CentOS - Git Push/Pull免账号密码设置
2016-07-29 本文已影响438人
大米卡卡
1. 在~/下创建并编辑文件:
# cd ~/
# touch .git-credentials
# vim .git-credentials
2. 输入内容格式:
https://{username}:{password}@github.com
3. 执行:
# git config --global credential.helper store
最后可以看到~/.gitconfig文件,会多了一项:
[credential]
helper = store