tijin
tijin

Reputation: 757

git server and client set up in linux

i am new to git and now i am trying to set up a git server and want to access the server from client.

referred many links but those are not helping me. i tried with the link http://davedevelopment.co.uk/2010/12/05/how-to-install-gitolite-on-ubuntu-10-10-maverick-meerkat.html. after the final step in the document i didn't know how to proceed.

can anyone give the details? thanks in advance.

Upvotes: 1

Views: 2279

Answers (2)

p4010
p4010

Reputation: 943

What is missing on the above answers is how to push on the server a new repo.

Suppose that in the gitolite config file you have a repo named my_repo, you can add to the server an existing local repo this way:

cd my_repo
git remote add gitolite [email protected]:my_repo
git push gitolite master

You have to type ONLY ONCE the second line above. After that, you only have to push.

Upvotes: 0

Daniel Persson
Daniel Persson

Reputation: 2337

if you have cloned a repository on your client you are ready to start coding...

git commit

to commit changes locally, and

git push

to push your changes to the server.

Upvotes: 1

Related Questions