TELMILA
TELMILA

Reputation: 83

steps to Make ubuntu system as shared GIT repository

steps to Make my ubuntu system as shared GIT repository. I'm using ubuntu12.04. i have installed git. how to change as remote repository

Upvotes: 0

Views: 91

Answers (1)

michas
michas

Reputation: 26495

You could create a repository in your home directory with git init --bare repo.git.

After this you could clone this repository (from another host) using git clone user@host:repo. (This only requires ssh access to your host.)

Upvotes: 1

Related Questions