Git fatal: protocol 'https' is not supported

前端 未结 15 1530
我寻月下人不归
我寻月下人不归 2021-01-29 21:32

I am going through Github\'s forking guide: https://guides.github.com/activities/forking/ and I am trying to clone the repository onto my computer. However, running the command:

15条回答
  •  情话喂你
    2021-01-29 21:43

    Edit: This particular users problem was solved by starting a new terminal session.

    A ? before the protocol (https) is not support. You want this:

    git clone git@github.com:octocat/Spoon-Knife.git

    or this:

    git clone https://github.com/octocat/Spoon-Knife.git

提交回复
热议问题