On Sat, Apr 23, 2022 at 03:08:00PM -0700, Kruse Ludington wrote: > When I enter this command (at my command prompt "pi@kruse-pi:~ $"): > > pi@kruse-pi:~ $ git clone https://github.com/billw2/rpi-clone.git > > It gives me this: > > Cloning into 'rpi-clone'... > > But nothing happens, after 5 minutes or so I get: > > fatal: unable to access 'https://github.com/billw2/rpi-clone.git/': Failed > to connect to 8123 port 1080: Connection timed out > > pi@kruse-pi:~ $ > > Any thoughts?
To access remote Git repositories via HTTP[S] Git uses the cURL library, so try setting and exporting GIT_CURL_VERBOSE=1 to your environment to make libcurl be extra chatty when it will carry out the session creation for Git. Something like this: $ export GIT_CURL_VERBOSE=1 $ git clone ... You could run git like this to collect the output: $ git ... 2>&1 | tee git-clone.log ...and then put the contents of that log file here (unless it will be apparent what the problem is from that output). -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/git-users/20220425105002.v2w66u7pioetgyt3%40carbon.
