khoi@slrpnk.net to Selfhosted@lemmy.worldEnglish · 1 year agoAnyone knows a good lightweight self-hosted alternative to GitHub?message-squaremessage-square18fedilinkarrow-up131arrow-down11file-text
arrow-up130arrow-down1message-squareAnyone knows a good lightweight self-hosted alternative to GitHub?khoi@slrpnk.net to Selfhosted@lemmy.worldEnglish · 1 year agomessage-square18fedilinkfile-text
minus-squareSamC@lemmy.nzlinkfedilinkEnglisharrow-up3·1 year agoIf you don’t need the web gui stuff (and you shouldn’t for personal use) you can set up a git server using gitolite. Very easy to manage
minus-squarerussjr08@outpost.zeuslink.netlinkfedilinkEnglisharrow-up8arrow-down1·1 year agoAnd if you really want even more barebones, you can just do git init --bare into a directory on your VPS, and then git clone user@your.ip.here:path/to/the/directory and use git as you would normally!
If you don’t need the web gui stuff (and you shouldn’t for personal use) you can set up a git server using gitolite. Very easy to manage
And if you really want even more barebones, you can just do
git init --bare
into a directory on your VPS, and thengit clone user@your.ip.here:path/to/the/directory
and use git as you would normally!