Comment on [deleted]
rentar42@kbin.social 11 months agoYou don't need a dedicated git server if you just want a simple place to store git. Simply place a git repository on your server and use ssh://yourserver/path/to/repo
as the remote URL and you can push/pull.
If you want more than that (i.e. a nice Web UI and user management, issue tracking, ...) then Gitea is a common solution, but you can even run Gitlab itself locally.
Tangent5280@lemmy.world 11 months ago
that sounds good. thanks.