解决github每次pull push输入密码问题

# 解决git pull/push每次都需要输入密码问题

git bash进入你的项目目录,输入:

bash 复制代码
git config --global credential.helper store

然后你会在你本地生成一个文本,上边记录你的账号和密码。配置项写入到 "C:\Users\用户名\ .gitconfig" 文件中。

然后你使用上述的命令配置好之后,再操作一次git pull,然后它会提示你输入账号密码,这一次之后就不需要再次输入密码了。

此外,相关操作
git config credential.helper 记住保存账号密码、关闭取消密码自动存储

取消(删除)记录账号和密码

bash 复制代码
git config --global --unset credential.helper

查询 凭证存储模式

bash 复制代码
git config --global credential.helper
或
git config --global --list
或
git config --global -l

修改 配置文件

bash 复制代码
git config --file=~/.git_credentails --global credential.helper "store"
或
git config --global  user.name "store"
相关推荐
MetaverseMan1 小时前
Cloudflare代理后的https连接的建立还是从源客户端到服务器端握手协商的连接吗
网络协议·https·github
梓羽玩Python8 小时前
21.1K Star!Manim:用于数学动画制作的强大开源引擎
github
油泼辣子多加9 小时前
2024年11月15日Github流行趋势
github
小华同学ai9 小时前
WukongCRM:github高分开源项目,基于微服务架构 +vue ElementUI的前后端分离CRM系统
架构·开源·github
阑梦清川14 小时前
路漫漫其修远兮,吾将上下而求索---第一次使用github的过程记录和个人感受
github
鸡丝米线14 小时前
使用Git工具在GitHub的仓库中上传文件夹(超详细)
git·elasticsearch·github
代码猪猪傻瓜coding21 小时前
github 仓库初始化命令
github
岁月无声code1 天前
Spring Boot 牛刀小试 org.springframework.boot:spring-boot-maven-plugin:找不到类错误
java·spring boot·github
油泼辣子多加1 天前
2024年11月14日Github流行趋势
github
罗克米1 天前
通过脚本,发起分支合并请求和打tag
github