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 invisible cd invisible git init touch readme.txt git add readme.txt git commit -m 'Initializing invisible repository' git remote add origin git@code.sat.qc.ca:invisible.git git push -u origin master
Existing Git Repo?
cd existing_git_repo git remote add origin git@code.sat.qc.ca:invisible.git git push -u origin master