标签:使用 目录 账号密码 code git bash store 相同 进入 项目目录
在 C:\Users\your name\ 目录下找到到
.gitconfig
这个文件,使用编辑器打开
[user]
name = ****
email = ********.com
[credential]
helper = store
文件中增加
[credential]
配置
[credential]
helper = store
配置完成保存退出,在项目文件夹打开
git bash
,使用git pull
再输入一次账号密码。最后一次使用git pull
$ git pull
Already up to date.
ok.
cd /
进入根目录,执行以下命令
git config --global credential.helper store
上述命令目的与
windows
环境中直接编辑.gitconfig
目的相同。
进入项目目录,执行
git pull
,按windows
环境操作完成账号密码的录入即可。
标签:使用 目录 账号密码 code git bash store 相同 进入 项目目录
原文地址:https://www.cnblogs.com/xzdm/p/12964532.html