Linux下git push、git pull等指令需要输入账号密码 - 免除设置

打开终端按顺序执行下面的指令:

1.cd ~

2.touch.git-credentials

3.vim .git-credentials然后在打开的文件里面输入

https://{username}:{password}@github.com

其中{username}{passworld}更换成自己的账号密码,保存并退出。

4.gitconfig --global credential.helper store

5.打开~/.gitconfig文件,会发现多了一项:

[credential]

helper = store


完成设置