A simple wrapper around socat to use as a git proxy command
#!/bin/sh | |
# Use socat to proxy git through an HTTP CONNECT firewall. | |
# Useful if you are trying to clone git:// from inside a company. | |
# Requires that the proxy allows CONNECT to port 9418. | |
# | |
# Save this file as gitproxy somewhere in your path (e.g., ~/bin) and then run | |
# chmod +x gitproxy | |
# git config --global core.gitproxy gitproxy | |
# | |
# More details at http://tinyurl.com/8xvpny | |
# Configuration. Common proxy ports are 3128, 8123, 8000. | |
_proxy=proxy.yourcompany.com | |
_proxyport=3128 | |
exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport |
This comment has been minimized.
This comment has been minimized.
cuongitbk
commented
Aug 1, 2015
I found that there is a parameter for authentication: You can try:
|
This comment has been minimized.
This comment has been minimized.
ozbillwang
commented
Nov 4, 2015
where do I save the file Found the answser: |
This comment has been minimized.
This comment has been minimized.
boly38
commented
Dec 22, 2015
another simple workaround (src) :
|
This comment has been minimized.
This comment has been minimized.
sunjw
commented
Sep 10, 2016
@boly38 super great workaround for github repos! |
This comment has been minimized.
This comment has been minimized.
justdoGIT
commented
Nov 14, 2017
shouldn't it be "$_user" and "$_passwd" in exec line @cuongitbk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
cuongitbk commentedAug 1, 2015
Hi, how can I set authentication information in that case?