标签:
vi ~/.git-credentials
输入以下内容:
https://{username}:{password}@github.com
执行命令
git config --global credential.helper store
vi ~/.gitconfig,末尾添加了一项:
[credential]
helper = store
即可免密使用git命令。
标签:
原文地址:http://www.cnblogs.com/flasheryu/p/5910233.html