logoalt Hacker News

xeeeeeeeeeeenutoday at 2:55 PM1 replyview on HN

If you have a server, some cheap VPS will suffice, you can host a private git repo there without installing anything. Run this on your server:

     git init --bare foo.git
and then on your PC you can do this:

    git clone [email protected]:~/foo.git
It's probably a good idea to make a separate user account on the server for it, though.

Replies

throwa356262today at 3:05 PM

This is great, but you can also run foregjo (the server behind coderberg) on your VPS.

It is a single binary and I think it is also very light on resources. At least compared to gitlab.

show 1 reply