Repository is empty. Get started by following the instructions below.

Git Setup:

	Download and Install Git
	git config --global user.name "Anonymous"
	git config --global user.email 
	Upload SSH Public Key

Repository Setup:

	mkdir works
	cd works
	git init
	touch readme.txt
	git add readme.txt
	git commit -m 'Initializing works repository'
	git remote add origin git@code.sat.qc.ca:works.git
	git push -u origin master

Existing Git Repo?

	cd existing_git_repo
	git remote add origin git@code.sat.qc.ca:works.git
	git push -u origin master