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: PGI WG Settings -> Members Tab -> New Member
Repository Setup:
mkdir pgi-wg cd pgi-wg git init touch README git add README git commit -m "Initial commit" git remote add origin gitosis@redmine.ogf.org:standards/architecture-area/pgi-wg.git git push origin master
Existing Git Repo?
cd existing_git_repo git remote add origin gitosis@redmine.ogf.org:standards/architecture-area/pgi-wg.git git push origin master