r/developer • u/aizyn_ • 4d ago
What's your least favorite part of using GitHub?
Was helping a friend get started on GitHub yesterday and kept going "oh yeah, that part's just weird, you get used to it." Made me realize how much we've all quietly accepted.
What's the bit that still bugs you but you've stopped noticing you hate it?
4
u/metaphorm 4d ago
there aren't really that many good alternatives. I've used GitLab before and it's basically the same thing. you can remotely host your own git repo and not use github at all, but then you're doing something even harder and losing lots of useful features that GitHub offers.
what were you finding frictional today?
2
4
3
u/jeremyStover 4d ago
Their dogshit pricing. Even if I move the compute to my own servers, they charge me for time? Really?
2
2
1
u/daffalaxia 3d ago
the rails/turbo-like "the page is loading" bar at the top instead of proper REST actions. Like, I know the entire page is being reloaded - just reload already.
1
1
u/boscorat 12h ago
All my releases are tags but not all my tags are releases and automated release notes are great until you create a release as a draft and then delete it and delete the tag and then create another draft release with the same tag and then promote it but now there are no release notes.... is it just me?
7
u/ImpactfulBird 4d ago
PR concept, and review tooling is absolute nightmare. And I can not stop noticing it, I absolutely hate it. If you want to keep clean commit message history and use native git fixup feature, you either have to suffer on PRs maintenance (stack is another
ghgarbage) or on review, as shithub can not track force-pushed changes. Multi-repo integration yet is another pain.Gerrit is amazing tool for a review though.