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;
}
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
|
show 3 more comments
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
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
|
show 3 more comments
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
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
macos git ssl openssl osx-el-capitan
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
|
show 3 more comments
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
|
show 3 more comments
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 20 '16 at 15:57
InfinityInfinity
118128
118128
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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