Replies: 1 comment
-
It doesn't look like the
Instead, one could run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I just have a quick question. In a program, I utilize gitpython to update some scripts. I want to support proxies for the pull and fetch operations. Therefore, I tried various ways to set the http proxy for python. Cloning the repository via a proxy is not needed, because the repo is copied onto the machine during the installation of the program.
First attempt:
The operation completes successfully, but the proxy is not used. Instead gitpython directly communicates with the git server specified in
uri_remote_git
.Next try:
Same result as before.
Running:
Results in the following error:
Setting the environment variable http_proxy has no effect either – the proxy is ignored
Can you help me how to achieve this?
Thanks!
Dennis
Beta Was this translation helpful? Give feedback.
All reactions