Create a new shared repository:
chown root:git /git/#{project}
cd /git/#{project}
git init --bare --shared=0660 #{repo}.git
This allows sharing of the repository in the group.
On the development station
cd #{project root}
git remote add origin #{user}@swiftlet.co.th:/git/#{project}/#{repo}.git
git push -u origin master
This pushes the code to the new master branch in the remote repository.