Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2909307
  • 博文数量: 199
  • 博客积分: 1400
  • 博客等级: 上尉
  • 技术积分: 4126
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-06 19:06
个人简介

半个PostgreSQL DBA,热衷于数据库相关的技术。我的ppt分享https://pan.baidu.com/s/1eRQsdAa https://github.com/chenhuajun https://chenhuajun.github.io

文章分类

全部博文(199)

文章存档

2020年(5)

2019年(1)

2018年(12)

2017年(23)

2016年(43)

2015年(51)

2014年(27)

2013年(21)

2011年(1)

2010年(4)

2009年(5)

2008年(6)

分类: WINDOWS

2018-05-26 02:06:48

git extension每次提示输入密码的解决办法

由于github升级了安全策略导致不得不重新安装git extension,但安装后发现原来用得好好的SSH信任失效了,每次push都提示输入密码, 还伴随“GitCredentialWinStore/git-credential-winstore.exe": No such file or directory”的错误。

解决办法

  1. 修改C:/users/chj/.gitconfig

    [credential]
    helper = store 

    或执行

    git config --global credential.helper store 
  2. 将原来origin的https的git url改成git的

.git/config

[remote "origin"]
    url = git@github.com:ChenHuajun/chenhuajun.github.io.git
阅读(2344) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~