Search code examples
gitgithubhttpsgit-clone

Why does it say that https: // fatal: Too many arguments?


why do you give me this error? , I tried everything they answered in this stack over flow and nothing came from what they say Git fatal: protocol 'https' is not supported

enter image description here


Solution

  • Please use english language.

    git clone takes only one (optional 2) argument. You have 4.

    Try git clone https://github.com/DarthMoulByte/unity-cache-server.git. If you want to specify the target folder which contains spaces you have to escape spaces like this:

    git clone https://github.com/DarthMoulByte/unity-cache-server.git Unity\ CacheServe\ v6
    

    On windows cmd you do it like this:

    git clone https://github.com/DarthMoulByte/unity-cache-server.git "Unity CacheServe v6"