Git Wiki
Advertisement

create a local repository and push changes to the public one[]

on buildhost4

mkdir example_<user>
cd example_<user>
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin <user>@146.124.44.190:/pub/git/example_<user>.git
git push origin master

now it should be also visible at gitweb.

Advertisement