Questions tagged [branching-strategy]
153 questions
2
votes
1 answer
Git Branch Strategy that suites for all the dev teams at my company
We have a mono-repository on Github, multiple teams work off of master by creating new branches based on master and creating pull requests regarding the features/bugfixes, etc.
For my team, though, the majority of the time (though, not always), the…

Gulsah Sarsilmaz
- 21
- 4
2
votes
1 answer
Branches and shared dev servers?
So I am using Subversion as SCM for a classic ASP webapp that I maintain. We use feature branching to handle changes that have dependencies or longer term development.
We use shared web servers for Dev/QA, and this is where my question comes in.…

Don Zacharias
- 1,544
- 2
- 14
- 31
2
votes
1 answer
Define contraints for specific exact cover problem
I have a specific problem in mind, that I want to solve using Knuth's Algorithm X. However, I struggle to translate my problem into suitable contraints, that make up the incidence matrix for Algorithm X to operate on.
For my sports club summer…

Xavier Mol
- 58
- 5
2
votes
2 answers
How can I branch my code in a way that makes testing possible without contaminating the baseline?
Using TFS, we have the following:
A main baseline
A development branch for each development effort. These get merged back to the baseline.
A release branch that is created with each release. Bug fixes are made here, released, and merged back to the…

adam0101
- 29,096
- 21
- 96
- 174
2
votes
0 answers
How to identify scripts being modified under two different SVN branches
Here is some background to the way we work
The team I work uses SVN to check in code. A branch is created for each Release people are working on. Trunk is the production code and no one touches it. A Release branch is merged into the trunk as soon…

Sachin
- 51
- 4
2
votes
1 answer
Alternate branching strategies in Gecode
I post here to ask if there is a way to alternate different strategies of branching. Let me explain, I have an efficient branching strategy which we'll call the strategy A. The biggest problem is that the strategy A cannot be used that often. So…

Missu
- 505
- 3
- 15
2
votes
1 answer
Struggling with an ideal Git branching strategy for a simple whitelabel solution
I am moving my source code into Git from TFVC land, and I figured it's time to clean up and do it properly - at the moment there is a lot of copy/pasting going on.
My project has a 'main' solution - which is seen as the Gold Standard if you will.…

aspirant_sensei
- 1,568
- 1
- 16
- 36
2
votes
1 answer
Branching strategy - Release Isolation With Continuous Deployments / Integration?
I have been creating builds and releases for the last 2.5 years (also with rm 13) using TFS and RM.
Recently , I tried to embed the 'Branching by Quality' pattern for Branching strategy in our Company.
we need hot-fix merge, sprint merging , bug…

boaz levinson
- 97
- 8
2
votes
1 answer
Using feature, story and task branches?
We are using Visual Studio Team Services (VSTS) which have epics, features, stories and down to tasks. We will also follow git dmz flow in which development happens in feature branches. We want to use VSTS structure but not breaking the principles…

letthefireflieslive
- 11,493
- 11
- 37
- 61
2
votes
1 answer
Git branching for agile development
First, I want to
Keep my master branch ALWAYS green.
Be able to cherry pick changes for the next release.
Branching strategy:
I have a master branch and an integration branch running alongside with it.
Branch off from master by tasks/issues.
When…

nt.jin
- 177
- 1
- 7
2
votes
0 answers
Branching to UFT API requests based on values in a data table
I have a "master" script in HP UFT 12.52 that runs tests for the gui side of or application and works fine. We want to use the same data table that drives the GUI tests on the web service.
The master uses an excel sheet to drive the values needed…

Jan D
- 51
- 3
2
votes
0 answers
Handling a forking/pull-request flow with a staging branch
I am currently in the middle of planning a new Git flow in my company and the new idea for it is to migrate over to forking and pull requests as well as add a staging branch for testing.
The proposed branch spec
master (development) - contains…

Karl Viiburg
- 832
- 10
- 34
2
votes
2 answers
Efficient TFS branching strategy advice
Our company (internal projects) used version control (TFS, now 2015) for simply keeping an audit trail of released code - I have brought in the use of branching and merging and its completely changed the way we look at bottlenecks in the development…

aspirant_sensei
- 1,568
- 1
- 16
- 36
2
votes
2 answers
Suggestions on how to handle branches in git for unfinished user stories
This is related to trying to deal with unfinished user stories. An example:
In sprint 1, there is a user story #100. So we create a sprint branch (sprint-1) and then off that branch a user story branch (us-100). At the end of the sprint, the user…

Greg McGuffey
- 3,116
- 3
- 38
- 58
2
votes
1 answer
TFS - What is the best branching strategy for this scenario?
My goal is to have a structure like this:
Project X
-- Main
-- QA
-- Dev
-- Feature X
Ideally, when working on a new feature, I would like to branch off the "Main" trunk and create a new "Dev/Feature X" branch. Once I have the feature ready for…

Travyguy9
- 4,774
- 8
- 43
- 63