Jakub Narebski, 13.01.2009: > P.S. What should I put in core.gitProxy to make it possible to fetch > via git:// protocol from repo.or.cz? I'm not sure if this is what you need, but I use this at work for fetching via git protocol: [core] gitProxy = /etc/gitproxy.sh for kernel.org gitProxy = /etc/gitproxy.sh for or.cz # and several others ... gitproxy.sh: #! /bin/sh (echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | socket <company proxy host> <port> | (read a; read a; cat ) Markus -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html