问题

每次在 push 代码的时候 Git 都会提示输入用户名和密码才能 push:

git-push
git-push

解决git push 到 github 时每次都需要输入用户名密码

在你的用户目录下输入如下命令

1
git config --global credential.helper store

比如我的目录是 /home/wistbean/ ,在终端中输入:

1
wistbean@wistbean:~$ git config --global credential.helper store

下一次 push 的时候需要输入一次用户名密码用于记录,以后就再也不需要输入用户名密码了。