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
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