Bootstrap

github提交代码是报permisstion denied 或者 access denied如何解决

见到报错信息:
permisstion denied 或者  access denied时的操作步骤:
     1.检查公钥是否配置正确;
     2.检查当前仓库关联的远端仓库是否使用的ssh协议
      查看当前仓库的关联详细信息:git remote --verbose
将本地的仓库关联到远端的 [email protected]:自己的github账号
git remote add origin [email protected]:账号名称
如果之前关联的是https, 非ssh, 可以删除

删除关联:git remote remove origin
重新添加:git remote add origin [email protected]:github账号

;