I'm using a box as a shared repo, and my team connects to it via ssh.
What I do is:
Create an empty git repository on the central machine
git init
Then from each workstation do something like
git clone ssh://user@central-box/Users/user/Projects/my-project/.git/
This works nice, but git keeps yelling at me every time I make a push something like this:
Is there a better way of sharing a repo over ssh.
IMPORTANT: I'm well aware of the existence of gitosis
and tools like that, I do not want anything fancy. Just sharing a .git repo over ssh.
Thanks