git lfs pull in repository produces an error about dial tcp The Next CEO of Stack OverflowHow can I add an empty directory to a Git repository?What is the difference between 'git pull' and 'git fetch'?Find and restore a deleted file in a Git repositoryHow do I force “git pull” to overwrite local files?Remove a file from a Git repository without deleting it from the local filesystemHow to make Git “forget” about a file that was tracked but is now in .gitignore?How to change the URI (URL) for a remote Git repository?How do I push a new local branch to a remote Git repository and track it too?How can I determine the URL that a local Git repository was originally cloned from?How to revert a Git repository to a previous commit

Is it ever safe to open a suspicious HTML file (e.g. email attachment)?

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

Expectation in a stochastic differential equation

Expressing the idea of having a very busy time

Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?

How to get the last not-null value in an ordered column of a huge table?

Why don't programming languages automatically manage the synchronous/asynchronous problem?

Can I board the first leg of the flight without having final country's visa?

Can someone explain this formula for calculating Manhattan distance?

What happened in Rome, when the western empire "fell"?

Why the last AS PATH item always is `I` or `?`?

In the "Harry Potter and the Order of the Phoenix" video game, what potion is used to sabotage Umbridge's speakers?

Film where the government was corrupt with aliens, people sent to kill aliens are given rigged visors not showing the right aliens

How to avoid supervisors with prejudiced views?

What connection does MS Office have to Netscape Navigator?

What can the phrase “is embedded in a whale of a bill” mean?

How to use ReplaceAll on an expression that contains a rule

"Eavesdropping" vs "Listen in on"

What was Carter Burke's job for "the company" in Aliens?

Defamation due to breach of confidentiality

Help/tips for a first time writer?

When "be it" is at the beginning of a sentence, what kind of structure do you call it?

Which one is the true statement?

Yu-Gi-Oh cards in Python 3



git lfs pull in repository produces an error about dial tcp



The Next CEO of Stack OverflowHow can I add an empty directory to a Git repository?What is the difference between 'git pull' and 'git fetch'?Find and restore a deleted file in a Git repositoryHow do I force “git pull” to overwrite local files?Remove a file from a Git repository without deleting it from the local filesystemHow to make Git “forget” about a file that was tracked but is now in .gitignore?How to change the URI (URL) for a remote Git repository?How do I push a new local branch to a remote Git repository and track it too?How can I determine the URL that a local Git repository was originally cloned from?How to revert a Git repository to a previous commit










1















git lfs pull in repository produces the following error:




oobarbazanoo@LAPTOP-CQEVT11F MINGW64 /c/Projects/doesnotmatter/ecom-oneapp-data-staging/ecom-oneapp-data-staging (master)
$ git lfs pull



batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
...




It seems that the issue is about the proxy being configured in a wrong way. So, what I decided to try is to run the command git config --global --unset http.proxy and then the git lfs pull once more. It did not help, I got the same error as above.



I am using Windows 10. Here is the copy of the file C:WindowsSystem32driversetchosts.file:



# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host

# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost


As you can see there is no helloInternet host being specified in it. Actually the file is totally blank, since it contains only comments.



What may I do to fix it?



So, here are my environment variables:
enter image description here



After deleting the http_proxy variable and trying out the command everything works just fine.



Thank you.










share|improve this question
























  • Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

    – brian m. carlson
    Mar 8 at 23:34











  • @brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

    – happydeveloper
    Mar 10 at 6:53











  • @brianm.carlson, why not post your comment as an answer?

    – happydeveloper
    Mar 10 at 7:04











  • Sure. Let me do that.

    – brian m. carlson
    Mar 10 at 17:37















1















git lfs pull in repository produces the following error:




oobarbazanoo@LAPTOP-CQEVT11F MINGW64 /c/Projects/doesnotmatter/ecom-oneapp-data-staging/ecom-oneapp-data-staging (master)
$ git lfs pull



batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
...




It seems that the issue is about the proxy being configured in a wrong way. So, what I decided to try is to run the command git config --global --unset http.proxy and then the git lfs pull once more. It did not help, I got the same error as above.



I am using Windows 10. Here is the copy of the file C:WindowsSystem32driversetchosts.file:



# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host

# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost


As you can see there is no helloInternet host being specified in it. Actually the file is totally blank, since it contains only comments.



What may I do to fix it?



So, here are my environment variables:
enter image description here



After deleting the http_proxy variable and trying out the command everything works just fine.



Thank you.










share|improve this question
























  • Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

    – brian m. carlson
    Mar 8 at 23:34











  • @brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

    – happydeveloper
    Mar 10 at 6:53











  • @brianm.carlson, why not post your comment as an answer?

    – happydeveloper
    Mar 10 at 7:04











  • Sure. Let me do that.

    – brian m. carlson
    Mar 10 at 17:37













1












1








1








git lfs pull in repository produces the following error:




oobarbazanoo@LAPTOP-CQEVT11F MINGW64 /c/Projects/doesnotmatter/ecom-oneapp-data-staging/ecom-oneapp-data-staging (master)
$ git lfs pull



batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
...




It seems that the issue is about the proxy being configured in a wrong way. So, what I decided to try is to run the command git config --global --unset http.proxy and then the git lfs pull once more. It did not help, I got the same error as above.



I am using Windows 10. Here is the copy of the file C:WindowsSystem32driversetchosts.file:



# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host

# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost


As you can see there is no helloInternet host being specified in it. Actually the file is totally blank, since it contains only comments.



What may I do to fix it?



So, here are my environment variables:
enter image description here



After deleting the http_proxy variable and trying out the command everything works just fine.



Thank you.










share|improve this question
















git lfs pull in repository produces the following error:




oobarbazanoo@LAPTOP-CQEVT11F MINGW64 /c/Projects/doesnotmatter/ecom-oneapp-data-staging/ecom-oneapp-data-staging (master)
$ git lfs pull



batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
batch response: Post https://yaroslavvaltech@bitbucket.org/doesnotmatter/ecom-oneapp-data-staging.git/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup helloInternet: no such host
...




It seems that the issue is about the proxy being configured in a wrong way. So, what I decided to try is to run the command git config --global --unset http.proxy and then the git lfs pull once more. It did not help, I got the same error as above.



I am using Windows 10. Here is the copy of the file C:WindowsSystem32driversetchosts.file:



# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host

# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost


As you can see there is no helloInternet host being specified in it. Actually the file is totally blank, since it contains only comments.



What may I do to fix it?



So, here are my environment variables:
enter image description here



After deleting the http_proxy variable and trying out the command everything works just fine.



Thank you.







git tcp proxy git-lfs lfs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 10 at 7:04







happydeveloper

















asked Mar 8 at 17:10









happydeveloperhappydeveloper

135




135












  • Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

    – brian m. carlson
    Mar 8 at 23:34











  • @brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

    – happydeveloper
    Mar 10 at 6:53











  • @brianm.carlson, why not post your comment as an answer?

    – happydeveloper
    Mar 10 at 7:04











  • Sure. Let me do that.

    – brian m. carlson
    Mar 10 at 17:37

















  • Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

    – brian m. carlson
    Mar 8 at 23:34











  • @brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

    – happydeveloper
    Mar 10 at 6:53











  • @brianm.carlson, why not post your comment as an answer?

    – happydeveloper
    Mar 10 at 7:04











  • Sure. Let me do that.

    – brian m. carlson
    Mar 10 at 17:37
















Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

– brian m. carlson
Mar 8 at 23:34





Do you have an http_proxy or https_proxy variable set in the environment, and if so, what does it contain?

– brian m. carlson
Mar 8 at 23:34













@brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

– happydeveloper
Mar 10 at 6:53





@brianm.carlson, oh! Thank you a lot! You are my saver. I updated my answer.

– happydeveloper
Mar 10 at 6:53













@brianm.carlson, why not post your comment as an answer?

– happydeveloper
Mar 10 at 7:04





@brianm.carlson, why not post your comment as an answer?

– happydeveloper
Mar 10 at 7:04













Sure. Let me do that.

– brian m. carlson
Mar 10 at 17:37





Sure. Let me do that.

– brian m. carlson
Mar 10 at 17:37












1 Answer
1






active

oldest

votes


















0














Go and most other tools that handle proxies support multiple environment variables to control the proxies used. For HTTP, this is the http_proxy environment variable, and for HTTPS, both http_proxy and https_proxy are consulted.



It looks like you may have one or both of those set in your environment; unsetting them may help you connect directly to the server.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    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%2fstackoverflow.com%2fquestions%2f55067898%2fgit-lfs-pull-in-repository-produces-an-error-about-dial-tcp%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














    Go and most other tools that handle proxies support multiple environment variables to control the proxies used. For HTTP, this is the http_proxy environment variable, and for HTTPS, both http_proxy and https_proxy are consulted.



    It looks like you may have one or both of those set in your environment; unsetting them may help you connect directly to the server.






    share|improve this answer



























      0














      Go and most other tools that handle proxies support multiple environment variables to control the proxies used. For HTTP, this is the http_proxy environment variable, and for HTTPS, both http_proxy and https_proxy are consulted.



      It looks like you may have one or both of those set in your environment; unsetting them may help you connect directly to the server.






      share|improve this answer

























        0












        0








        0







        Go and most other tools that handle proxies support multiple environment variables to control the proxies used. For HTTP, this is the http_proxy environment variable, and for HTTPS, both http_proxy and https_proxy are consulted.



        It looks like you may have one or both of those set in your environment; unsetting them may help you connect directly to the server.






        share|improve this answer













        Go and most other tools that handle proxies support multiple environment variables to control the proxies used. For HTTP, this is the http_proxy environment variable, and for HTTPS, both http_proxy and https_proxy are consulted.



        It looks like you may have one or both of those set in your environment; unsetting them may help you connect directly to the server.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 10 at 17:39









        brian m. carlsonbrian m. carlson

        1,736211




        1,736211





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • 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%2fstackoverflow.com%2fquestions%2f55067898%2fgit-lfs-pull-in-repository-produces-an-error-about-dial-tcp%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 get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229