首先进入到项目目录,输入下面的命令:
git config --global credential.helper store
这个命令会在生成一个文件 ~/.git-credentials
用来记录账号和密码。
然后输入 git pull
命令,会提示输入账号密码,命令执行完后 ~/.git-credentials
文件里会保存你的账号密码,这样下次再次 git pull
的时候就不用输账号密码了。
首先进入到项目目录,输入下面的命令:
git config --global credential.helper store
这个命令会在生成一个文件 ~/.git-credentials
用来记录账号和密码。
然后输入 git pull
命令,会提示输入账号密码,命令执行完后 ~/.git-credentials
文件里会保存你的账号密码,这样下次再次 git pull
的时候就不用输账号密码了。