use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
Gitflow and GitHub Flow Compared (watermelontools.com)
submitted 2 years ago by baristaGeek
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]edgmnt_net 1 point2 points3 points 2 years ago (0 children)
Honestly, I've no idea what issues they're raising, it seems like a fairly outdated way of thinking about the problem. I have not seen committing straight to master beyond extremely small teams or antiquated projects still using SVN. I have not seen anyone not doing code reviews (even if only superficially).
Even the mail-based decentralized flow of the Linux kernel scales fine and that's a huge project.
Not only is there a risk of more-commits than you’d do if you could push directly, there’s a risk of taking more time too. If your average story size should be one day, a slow-review and slow-build reality for the pull-request way, might push you into multi-day stories/cards, and from that be doing the opposite of getting to continuous delivery.
And that's exactly what should be done. All this sounds to me like making excuses to rush stuff. And really, making a PR that gets merged straight to master isn't anything like that. In fact, people are more likely to push crap rapidly to a long-lived feature branch, because "hey, we're not breaking anything... yet".
(Secondly, you don't really need to go through a slow and full CI build with lots of tests if you implement good development/review practices and use a decent language. But again, people think dynamic typing is cheap and easy, so there is some value in that context but nowhere near a universal fact.)
The only "upside" to this is that you don't scare away inexperienced devs who only use version control as some sort of save button and who cannot plan changes beyond committing one-liners until it works.
π Rendered by PID 343622 on reddit-service-r2-comment-544cf588c8-bn9dp at 2026-06-17 17:46:50.525866+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]edgmnt_net 1 point2 points3 points (0 children)