方法1
创建文件:
touch ~/.git-credentials
vim ~/.git-credentials
添加内容
https://{username}:{passwd}@github.com
Git全局选项配置
git config --global credential.helper store
git config credential.helper 'cache --timeout=3600' #设置密码生存时间,可忽略
git config --global credential.helper store --file ~/.my-credentials #设置自己 .git-credentials文件
vim ~/.gitconfig
[credential]
helper = store
方法2
创建文件
touch ~/.netrc
vim ~/.netrc
添加内容
machine git.baidu.com
login 用户名
password 用户密码
Git全局选项配置
git config --global credential.helper store
git config credential.helper 'cache --timeout=3600' #可以忽略此设置
vim ~/.gitconfig
[credential]
helper = store