git push出现ERROR: Repository not found的解决
·问题git push时候出现的无法找到远程仓库的错误,git commit其他的都没有问题。网上的方法大多数关于更改sshd的权限或者删除host,试过以后发现都没有用。其实只需要重新提交地址就可以解决,运行如下命令:git remote set-url origin git@github.com:<仓库地址>...