If you already install gitosis then you can follow this step to add new project:
Creating a new project on git repository
Clone gitosis-admin:
git clone git@192.168.0.249:gitosis-admin
Enter on gitosis-admin/ and edit gitosis.conf to add new group and project:
[group new-project-name] members = joao@pessoa maria@bonita jose@geraldo writable = new-project-name
Go to your local project source code directory and execute:
git init git remote add origin git@192.168.0.249:new-project-name.git git add * git commit --allow-empty git push origin master:refs/heads/master