this post was submitted on 14 Sep 2023
100 points (94.6% liked)
Programming
17319 readers
69 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The big and growing issue is that too much functionality is in GitHub and not in Git itself. So while you can move or mirror your repository very easily, moving your issue tracker or pending pull requests is a lot harder and comes with huge loss of information (e.g. there is no way to contact the submitter of a bug report, as all you get is a GitHub username, not email and GitHub doesn't even offer PMs).
That said, I'd happily ditch GitHub for anything more distributed, e.g. hosting Git repositories on IPFS, integration with
git-bug
, etc. You can mostly DIY that today, but a hoster that provides some free storage would be very much welcome to help with availability.Another more basic thing I am missing today is a redirect service for repository names , having
https://github.com/User/Project.git
spread all over the build files makes it hard to move hosters or provide backup repositories. GNU Guix hasmirror://
to solve that, but that's about the only place I can think of with mirroring build in.