$ sudo apt-get update
$ sudo apt-get install git-core
$ sudo adduser git
$ su git
$ git init --bare myproject
$ mkdir myproject
$ cd myproject
$ git init
$ touch README.md
$ git add .
$ git commit -m "Initial comit"
$ git remote add origin ssh://git@the_server:prot_number/home/git/myproject
$ git push origin master