How to Host Your Own Private Git Repositories
eklitzke.org
How to Host Your Own Private Git Repositories
1–10 of 114 posts
Re: How to Host Your Own Private Git Repositories
#2Re: How to Host Your Own Private Git Repositories
#3I've been using Gogs happily for two years: https://gogs.io/docs/installation
I buy the need for the gitlabs of the world when multiple users show up, if only because managing credentials is a pain. But for single user use cases I wouldn't waste my time.
Re: How to Host Your Own Private Git Repositories
#4I've been using Gogs happily for two years: https://gogs.io/docs/installation
Eh. The method described in this post (ie bare repositories on a filesystem and ssh transport) is perfectly sufficient for my personal use if I'm hosting. The minute there's a MySQL dependency I'm a hard pass... I buy the need for the gitlabs of the world when multiple users show up, if only because managing credentials is a pain. But for single user use cases I wouldn't waste my time.
Re: How to Host Your Own Private Git Repositories
#5I use GitHib client using BitBucket for repo hosting with LFS and it works great, no need to host anything.
Re: How to Host Your Own Private Git Repositories
#6I've been using Gogs happily for two years: https://gogs.io/docs/installation
Eh. The method described in this post (ie bare repositories on a filesystem and ssh transport) is perfectly sufficient for my personal use if I'm hosting. The minute there's a MySQL dependency I'm a hard pass... I buy the need for the gitlabs of the world when multiple users show up, if only because managing credentials is a pain. But for single user use cases I wouldn't waste my time.
"Based on your choice, install one of supported databases or skip this step"
Re: How to Host Your Own Private Git Repositories
#7Why do this when http://bitbucket.com will host private git repos for free? They also have have Large File Storage implemented as well. I use GitHib client using BitBucket for repo hosting with LFS and it works great, no need to host anything.
Re: How to Host Your Own Private Git Repositories
#8If you need something a little bit more complex, I would highly recommend gitolite for managing repositories & users. Configuration is done via some INI/TOML-like files in a git repo. User public keys are stored in the same repo.
Re: How to Host Your Own Private Git Repositories
#9edit: thanks anyway for your version!
Re: How to Host Your Own Private Git Repositories
#10Why do this when http://bitbucket.com will host private git repos for free? They also have have Large File Storage implemented as well. I use GitHib client using BitBucket for repo hosting with LFS and it works great, no need to host anything.