Comment on [deleted]
Tangent5280@lemmy.world 11 months agoDo you use your own git server? Or do you use github? I want to use git but i dont want microsofts grubby hands in my data
Comment on [deleted]
Tangent5280@lemmy.world 11 months agoDo you use your own git server? Or do you use github? I want to use git but i dont want microsofts grubby hands in my data
rentar42@kbin.social 11 months ago
You 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.