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