views:

32

answers:

1

I want to use my Linux home server as a central repo for having access to my git projects anywhere.

I've heard about gitosis, but was wondering if there might be a simpler/better way, maybe more native to linux and git itself (i.e. no python), to do this ?

+1  A: 

For stuff I don't put on GitHub, I remote my git repos via SSH in a user directory. See this blog post for an example. That works pretty well and is very simple.

dbrown0708