0


git记住账号和密码

git记住账号和密码

一、git记住账号和密码

在使用 git 使用 https推送的时候一直需要输入密码。就可以试试下面的方法

1. 全局记住

windows 在git bash 中执行以下命令
linux 直接在bash中执行

git config --global credential.helper store

2. 取消全局记住

如果是自己输错了,就需要取消全局记住
git 提示 fatal: Authentication failed for… 但是没有弹出用户名和密码弹窗,就可以使用如下命令:

git config --system--unset credential.helper
标签: git git记住密码

本文转载自: https://blog.csdn.net/qq_43680827/article/details/140526927
版权归原作者 太阳风暴 所有, 如有侵权,请联系我们删除。

“git记住账号和密码”的评论:

还没有评论