So I live in a third world country with DSL and can't download the master branch through git without my connection terminating at some point. Seeing the rsync option here
http://ufoai.org/wiki/Git#rsync_way, I tried that, but I am a bit confused how to close the deal. I assume the instructions were intended to be written as
After the fetching you need to do some more things:
1. rename code.git to .git
2. edit .git/config and set bare to false
3. go into ufoai and checkout your working copy
I then assumed these commands were to follow while I was in the ufoai directory that received the code.git.
git remote set-url --push origin ssh://<SF-username>@git.code.sf.net/p/ufoai/code
git remote set-url origin git://git.code.sf.net/p/ufoai/code
However my bash terminal is confused by SF-username. Am I supposed to replace SF-username with something then execute these commands?