Git fatal: protocol 'https' is not supported

前端 未结 15 1531
我寻月下人不归
我寻月下人不归 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:59

    Problem

    git clone https://github.com/rojarfast1991/TestGit.git fatal: protocol 'https' is not supported

    Solution:

    Steps:

    (1):- Open the new terminal and clone the git repository

    git clone https://github.com/rojarfast1991/TestGit.git

    (2) Automatic git login prompt will open and it will be asked you to enter a user credential.

    UserName : - xxxxxxx

    PassWord : - xxxxxxx

    Finally, cloning will start...

    git clone https://github.com/rojarfast1991/TestGit.git
    Cloning into 'TestGit'...
    remote: Enumerating objects: 4, done.
    remote: Counting objects: 100% (4/4), done.
    remote: Compressing objects: 100% (3/3), done.
    remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
    Unpacking objects: 100% (4/4), done.
    

提交回复
热议问题