专业编程基础技术教程

网站首页 > 基础教程 正文

git pull/push 命令时每次都需要输入name/password

ccvgpt 2024-07-17 17:48:54 基础教程 9 ℃

每次拉取和提交代码的时候,都需要输入用户名和密码,很麻烦。

git config --global credential.helper store

找到git的配置文件 .gitconfig ,添加一行代码 (全盘搜 .gitconfig 才能找到这个文件)

git pull/push 命令时每次都需要输入name/password

[credential]
	helper = store


原理:这个命令是在本地生成一个账号密码文件,这样就不用每次都输入了
这个方法对于windows,linux都是通用的!!!
如果想查看账号密码

cat ~/.git-credentials

查看本地所有全局配置

git config --global -l

Tags:

最近发表
标签列表