Activity Team/Git FAQ: Difference between revisions
Line 286: | Line 286: | ||
:If you are behind a firewall and need only ''Read-Only'' access to git.sugarlabs.org, you can use HTTP links, like | :If you are behind a firewall and need only ''Read-Only'' access to git.sugarlabs.org, you can use HTTP links, like | ||
https://github.com/username/<project>.git | |||
:But if you need commit access, you'll have to set up an SSH proxy tunnel. One option is using [http://www.torproject.org/ Tor]. So, install all requirements: | :But if you need commit access, you'll have to set up an SSH proxy tunnel. One option is using [http://www.torproject.org/ Tor]. So, install all requirements: | ||
* [http://www.torproject.org/ Tor] to make tunnel via Tor network, | * [http://www.torproject.org/ Tor] to make tunnel via Tor network, | ||
Line 294: | Line 293: | ||
:Setup your tunnel in SSH. Add the following lines to your ~/.ssh/config | :Setup your tunnel in SSH. Add the following lines to your ~/.ssh/config | ||
Host | Host github.com | ||
User | User git | ||
ProxyCommand /usr/bin/connect -S 127.0.0.1:9050 | ProxyCommand /usr/bin/connect -S 127.0.0.1:9050 github.com 22 | ||
:Then start [http://www.torproject.org/ Tor], you can just run it on behalf of your account | :Then start [http://www.torproject.org/ Tor], you can just run it on behalf of your account |