解决git pull 时每次都要输入用户名和密码的方法

在需要记录用户密码的项目上打开终端cmd, 输入下面两行命令,

//删除 store 配置
git config --global --unset credential.helper store
//添加 store 配置
git config credential.helper store

然后按系统提示输入用户名和密码,下次拉取代码就不用重复输入了。

你可能感兴趣的:(Nodejs,Git,git,github)