半个PostgreSQL DBA,热衷于数据库相关的技术。我的ppt分享https://pan.baidu.com/s/1eRQsdAa https://github.com/chenhuajun https://chenhuajun.github.io
分类: WINDOWS
2018-05-26 02:06:48
由于github升级了安全策略导致不得不重新安装git extension,但安装后发现原来用得好好的SSH信任失效了,每次push都提示输入密码, 还伴随“GitCredentialWinStore/git-credential-winstore.exe": No such file or directory”的错误。
解决办法
修改C:/users/chj/.gitconfig
[credential] helper = store
或执行
git config --global credential.helper store
将原来origin的https的git url改成git的
.git/config
[remote "origin"] url = git@github.com:ChenHuajun/chenhuajun.github.io.git