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

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

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

完成设置

posted @ 2020-06-08 21:00  丶尘丶  阅读(1370)  评论(0编辑  收藏  举报