打开终端按顺序执行下面的指令:
1.cd ~
2.touch .git-credentials
3.vim .git-credentials 然后在打开的文件里面输入
https://{username}:{password}@github.com
其中{username},{passworld}更换成自己的账号密码,保存并退出。
4.git config --global credential.helper store
5.打开~/.gitconfig文件,会发现多了一项:
[credential]
helper = store
完成设置