Moving git repo
From GLMWiki
How to move a git repo within a gitolite setup (using wildcards)
So you added the git repo in with the wrong name. Don't remove the .git directory that you have built. We just need to replace the remote that is being used from your git repo.
List your remotes
git remote -v
Remove your current remote for origin
git remote rm origin
NOTE: git remote rm does not delete the remote repository from the server. It simply removes the remote and its references from your local repository.
Add the new location for origin
git remote add origin git@cvs2:{new path in gitolite}
Check your remote now
git remote -v
You can now push your project into the new remote location.
It's also a good idea to clean up after yourself and remove your old location.