Sources:
- https://gist.github.com/joahking/780877
- https://stackoverflow.com/questions/14348874/git-repository-url-ssh-syntax-without-absolute-path
$ cd ~/git
$ mkdir myapp.git
$ cd myapp.git
$ git --bare init
Initialized empty Git repository in /home/user/git/myapp.git
$ git remote add origin ssh://myserver.com/~/myapp.git
# or
$ git remote add origin ssh://[email protected]:12345/~/myapp.git