Github Authentication Failed - … GitHub does not provide shell access

后端 未结 4 706
悲&欢浪女
悲&欢浪女 2020-12-23 22:41
$ git remote add origin git@github.com:lut/EvolutionApp.git
fatal: remote origin already exists.

$ git push -u origin master
fatal: \'EvolutionApp\' does not appear         


        
4条回答
  •  时光说笑
    2020-12-23 23:24

    You might have to add the remote again. That error message happens when Git doesn't know where to push to.

    Use git remote -v check if the remote exists, if not, add it.

    Even then if it doesn't work try removing the GIT_SSH environment variable, this maybe causing the problem.

提交回复
热议问题