generic-poky/scripts/poky-git-proxy-command
Richard Purdie a546b63011 scripts: Add git proxy script
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4193 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-04-08 11:31:08 +00:00

10 lines
141 B
Bash
Executable file

#! /bin/bash
(echo "CONNECT $1:$2 HTTP/1.0";
echo;
cat ) | nc $GIT_PROXY_HOST $GIT_PROXY_PORT |
(read a;
read a;
read a;
cat )