GIT warning: unsupported ssl version tlsv1.2: using default





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I am trying to clone a git repository and receiving the following warning and error message:



Cloning into 'projectname'...
warning: unsupported ssl version tlsv1.2: using default
* Couldn't find host <HOST> in the .netrc file; using defaults
* Trying <IP ADDRESS>...
* Connected to <HOST> (<IP ADDRESS>) port 443 (#0)
* Unknown SSL protocol error in connection to <HOST>:-9838
* Closing connection 0
fatal: unable to access 'https://<HOST>/ios/ios-app.git/': Unknown SSL protocol error in connection to <HOST>:-9838


I am using:

OS X El Capitan (10.11.3)

Git client (2.6.4)

OpenSSL (1.0.2e)



Can you help me out what's wrong?





Update:

I created another user on my computer and there the cloning works. Only my user has the problem. Where can the problem lie?










share|improve this question

























  • What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

    – Ramhound
    Jan 20 '16 at 14:33













  • This is in my .gitconfig file: [http] sslVersion = tlsv1.2

    – Infinity
    Jan 20 '16 at 14:35













  • I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

    – Infinity
    Jan 20 '16 at 14:35











  • Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

    – Ramhound
    Jan 20 '16 at 14:38











  • .netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

    – SaxDaddy
    Jan 20 '16 at 14:39




















0















I am trying to clone a git repository and receiving the following warning and error message:



Cloning into 'projectname'...
warning: unsupported ssl version tlsv1.2: using default
* Couldn't find host <HOST> in the .netrc file; using defaults
* Trying <IP ADDRESS>...
* Connected to <HOST> (<IP ADDRESS>) port 443 (#0)
* Unknown SSL protocol error in connection to <HOST>:-9838
* Closing connection 0
fatal: unable to access 'https://<HOST>/ios/ios-app.git/': Unknown SSL protocol error in connection to <HOST>:-9838


I am using:

OS X El Capitan (10.11.3)

Git client (2.6.4)

OpenSSL (1.0.2e)



Can you help me out what's wrong?





Update:

I created another user on my computer and there the cloning works. Only my user has the problem. Where can the problem lie?










share|improve this question

























  • What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

    – Ramhound
    Jan 20 '16 at 14:33













  • This is in my .gitconfig file: [http] sslVersion = tlsv1.2

    – Infinity
    Jan 20 '16 at 14:35













  • I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

    – Infinity
    Jan 20 '16 at 14:35











  • Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

    – Ramhound
    Jan 20 '16 at 14:38











  • .netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

    – SaxDaddy
    Jan 20 '16 at 14:39
















0












0








0








I am trying to clone a git repository and receiving the following warning and error message:



Cloning into 'projectname'...
warning: unsupported ssl version tlsv1.2: using default
* Couldn't find host <HOST> in the .netrc file; using defaults
* Trying <IP ADDRESS>...
* Connected to <HOST> (<IP ADDRESS>) port 443 (#0)
* Unknown SSL protocol error in connection to <HOST>:-9838
* Closing connection 0
fatal: unable to access 'https://<HOST>/ios/ios-app.git/': Unknown SSL protocol error in connection to <HOST>:-9838


I am using:

OS X El Capitan (10.11.3)

Git client (2.6.4)

OpenSSL (1.0.2e)



Can you help me out what's wrong?





Update:

I created another user on my computer and there the cloning works. Only my user has the problem. Where can the problem lie?










share|improve this question
















I am trying to clone a git repository and receiving the following warning and error message:



Cloning into 'projectname'...
warning: unsupported ssl version tlsv1.2: using default
* Couldn't find host <HOST> in the .netrc file; using defaults
* Trying <IP ADDRESS>...
* Connected to <HOST> (<IP ADDRESS>) port 443 (#0)
* Unknown SSL protocol error in connection to <HOST>:-9838
* Closing connection 0
fatal: unable to access 'https://<HOST>/ios/ios-app.git/': Unknown SSL protocol error in connection to <HOST>:-9838


I am using:

OS X El Capitan (10.11.3)

Git client (2.6.4)

OpenSSL (1.0.2e)



Can you help me out what's wrong?





Update:

I created another user on my computer and there the cloning works. Only my user has the problem. Where can the problem lie?







macos git ssl openssl osx-el-capitan






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 20 '16 at 15:46







Infinity

















asked Jan 20 '16 at 14:25









InfinityInfinity

118128




118128













  • What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

    – Ramhound
    Jan 20 '16 at 14:33













  • This is in my .gitconfig file: [http] sslVersion = tlsv1.2

    – Infinity
    Jan 20 '16 at 14:35













  • I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

    – Infinity
    Jan 20 '16 at 14:35











  • Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

    – Ramhound
    Jan 20 '16 at 14:38











  • .netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

    – SaxDaddy
    Jan 20 '16 at 14:39





















  • What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

    – Ramhound
    Jan 20 '16 at 14:33













  • This is in my .gitconfig file: [http] sslVersion = tlsv1.2

    – Infinity
    Jan 20 '16 at 14:35













  • I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

    – Infinity
    Jan 20 '16 at 14:35











  • Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

    – Ramhound
    Jan 20 '16 at 14:38











  • .netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

    – SaxDaddy
    Jan 20 '16 at 14:39



















What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

– Ramhound
Jan 20 '16 at 14:33







What do you have set as the default protocol? You should also add the host to the .netrc per the warning.

– Ramhound
Jan 20 '16 at 14:33















This is in my .gitconfig file: [http] sslVersion = tlsv1.2

– Infinity
Jan 20 '16 at 14:35







This is in my .gitconfig file: [http] sslVersion = tlsv1.2

– Infinity
Jan 20 '16 at 14:35















I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

– Infinity
Jan 20 '16 at 14:35





I am not sure what other defaults can be set... How can I verify it? Do you have any clue?

– Infinity
Jan 20 '16 at 14:35













Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

– Ramhound
Jan 20 '16 at 14:38





Well you go from port 443 to port 9838. The output literally tells you what the problem is, but its your configuration, so you need to determine what your default protocol is set to.

– Ramhound
Jan 20 '16 at 14:38













.netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

– SaxDaddy
Jan 20 '16 at 14:39







.netrc shouldn't matter as it's being used for failover. Check to make sure 1.) <HOST> is available, 2.) Your repo is available and 3.) your creds are correct. Also, try again without the trailing slash, e.g., https://<HOST>/ios/ios-app.git

– SaxDaddy
Jan 20 '16 at 14:39












1 Answer
1






active

oldest

votes


















0














Removed the following lines from my .gitconfig file:



http.sslverify=false
http.postbuffer=157286400
http.sslversion=tlsv1.0
credential.helper=cache --timeout=3600


I am not sure which one blocked my connection to the remote. Maybe the http.sslversion=tlsv1.0. I hope this helps somebody else too.






share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1028961%2fgit-warning-unsupported-ssl-version-tlsv1-2-using-default%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Removed the following lines from my .gitconfig file:



    http.sslverify=false
    http.postbuffer=157286400
    http.sslversion=tlsv1.0
    credential.helper=cache --timeout=3600


    I am not sure which one blocked my connection to the remote. Maybe the http.sslversion=tlsv1.0. I hope this helps somebody else too.






    share|improve this answer




























      0














      Removed the following lines from my .gitconfig file:



      http.sslverify=false
      http.postbuffer=157286400
      http.sslversion=tlsv1.0
      credential.helper=cache --timeout=3600


      I am not sure which one blocked my connection to the remote. Maybe the http.sslversion=tlsv1.0. I hope this helps somebody else too.






      share|improve this answer


























        0












        0








        0







        Removed the following lines from my .gitconfig file:



        http.sslverify=false
        http.postbuffer=157286400
        http.sslversion=tlsv1.0
        credential.helper=cache --timeout=3600


        I am not sure which one blocked my connection to the remote. Maybe the http.sslversion=tlsv1.0. I hope this helps somebody else too.






        share|improve this answer













        Removed the following lines from my .gitconfig file:



        http.sslverify=false
        http.postbuffer=157286400
        http.sslversion=tlsv1.0
        credential.helper=cache --timeout=3600


        I am not sure which one blocked my connection to the remote. Maybe the http.sslversion=tlsv1.0. I hope this helps somebody else too.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 20 '16 at 15:57









        InfinityInfinity

        118128




        118128






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Super User!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1028961%2fgit-warning-unsupported-ssl-version-tlsv1-2-using-default%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...

            In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

            IC on Digikey is 5x more expensive than board containing same IC on Alibaba: How? [on hold]