├── README.md ├── config ├── git-proxy-command ├── git-ssh-wrap ├── gitnonymous └── gitnonymous-setup /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/gitnonymous/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/gitnonymous/HEAD/config -------------------------------------------------------------------------------- /git-proxy-command: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | nc -X 5 -x 127.0.0.1:9050 $* 4 | -------------------------------------------------------------------------------- /git-ssh-wrap: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ssh -i "${HOME}/.gitnonymous-KEYNAME/ssh/id_rsa" -o ProxyCommand="nc -X 5 -x localhost:9050 %h %p" $@ 4 | -------------------------------------------------------------------------------- /gitnonymous: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/gitnonymous/HEAD/gitnonymous -------------------------------------------------------------------------------- /gitnonymous-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr15m/gitnonymous/HEAD/gitnonymous-setup --------------------------------------------------------------------------------