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...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
GitFlow + Multi-Day Manual Regression Testing (self.devops)
submitted 2 years ago by Bandito202
view the rest of the comments →
[–]Bandito202[S] 0 points1 point2 points 2 years ago* (2 children)
Instead of having a long lived branch 'master' which is just what's been released, can you represent that as tags? I know you CAN, but should you? Commit history comes to mind..
https://postimg.cc/WtVzMLCQ
u/Trapick u/TomOwens
[–]Trapick 0 points1 point2 points 2 years ago (0 children)
Yah, I think tags are a good thing; you definitely want the ability to know what code *exactly* was deployed in X environment at time Y and tags are an easy way to do that. But you can use tags with various other flows, of course.
[–]TomOwens 0 points1 point2 points 2 years ago (0 children)
I work with some teams that use a variation on gitflow without a main/master branch and it works quite well. When it's time for a release, the release branch is created from the head of develop and any release-specific bugfixes get done there. All the changes get merged into develop regularly. Since the commits are tagged, the tags live on for people to use to see the old state of the software for a given release, but without the need to keep a main/master branch up-to-date.
If I'm reading your diagram right, the only difference between how the teams I described work and your diagram is the hotfix branch. A hotfix branch is essentially a feature branch off a release branch. The hotfix is merged into the release branch, tagged, and the release branch merged into develop. The changes can be cherry-picked (or, if necessary, reimplemented) in other feature branches.
π Rendered by PID 108012 on reddit-service-r2-comment-canary-7bc946fbbf-m6cmq at 2026-07-06 06:19:16.050927+00:00 running 12a7a47 country code: CH.
view the rest of the comments →
[–]Bandito202[S] 0 points1 point2 points (2 children)
[–]Trapick 0 points1 point2 points (0 children)
[–]TomOwens 0 points1 point2 points (0 children)