第一步:进入项目目录,在 git 终端执行以下命令:
git config --global credential.helper store
第二步:重新执行一次git pull,这次它还是提示你输入账号和密码:
git pull
Username for 'https://git.xxxxxxxx.com': ******
Password for 'https://demo123@163.com': *******
后面再 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 文件文章来源:https://www.toymoban.com/news/detail-617402.html
文章来源地址https://www.toymoban.com/news/detail-617402.html
到了这里,关于解决每次提交代码都需要输入账号和密码的问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!