Johnathan Kong
Creating a repo
How to create a repo from any server. Before this step, you will have to edit your gitosis file to ensure that this repo exists in the “writable” and the user has permissions (put is name in the “members”).
1 2 3 4 5 6 7 8 | Create a repo directory if you don't have one already Change to the directory git init git remote add origin git@<your server>:<your repo>.git add/edit the files git add * git commit -m "<message>" git push origin master |