Repository does not exist. Create one using the instructions below.
Repository
Git setup:
Download and install Git
git config --global user.name "Anonymous" git config --global user.email
Permission Setup:
Add yourself as a project developer: ISOD RG Settings -> Members Tab -> New Member
Repository Setup:
mkdir isod-rg cd isod-rg git init touch README git add README git commit -m "Initial commit" git remote add origin gitosis@redmine.ogf.org:standards/infrastructure-area/isod-rg.git git push origin master
Existing Git Repo?
cd existing_git_repo git remote add origin gitosis@redmine.ogf.org:standards/infrastructure-area/isod-rg.git git push origin master