第一步:进入项目目录,在 git 终端执行以下命令:
git config --global credential.helper store
第二步:重新执行一次git pull,这次它还是提示你输入账号和密码:
git pull
Username for 'https://git.xxxxxxxx.com': ******
Password for 'https://[email protected]': *******
后面再 pull 或者 push 的时候,就不用输入账户和密码了。
注意,如果你换了git账号,或者你换了电脑,执行完 "git config --global credential.helper store" 再 "git pull"时,可能会出现下面的报错:
git pull
remote: The project you were looking for could not be found.
fatal: repository 'http://git.xxxx.com/xxxx.git/' not found
解决方法是,打开“C盘/用户”目录,删除该目录下的 “.git-credentials”文件,重新执行上面的第一步和第二步。
设置后的 .gitconfig 文件
设置后的 .git-credentials 文件
版权归原作者 shxs875 所有, 如有侵权,请联系我们删除。