Git Fetch returns 'fatal: I don't handle protocol https' in windows

前端 未结 8 1577
清酒与你
清酒与你 2021-01-11 19:10

Just after adding remote repo, I tried git fetch remoteRepoName but it\'s returning this error:

fatal: I don\'t handle protocol \'https\'

8条回答
  •  灰色年华
    2021-01-11 20:09

    I can see extra spaces between forkgeek and https://... online 3.

    Run these commands to fix it.

    git remote remove forkgeek
    
    git remote add upstream https://github.com/forkgeeks/aws-cloudwatch-keen-integration.git
    
    git fetch upstream
    

    I have changed forkgeek into upstream, you can have whatever name you want.

提交回复
热议问题