Questions tagged [branch]
For question about branches in revision/version control systems
19 questions
0 votes
0 answers
77 views
Azure DevOps REST API – Create a YAML pipeline targeting a specific Git branch
I’m trying to create a pipeline in Azure DevOps using the REST API. My goal is to create a pipeline that references a YAML file located in a specific branch of a Git repository According to the ...
0 votes
1 answer
97 views
What is the difference between The Shared repository model and fork and pull model?
I am trying to understand what is the difference between the two. The Shared repository model: uses ‘topic’ branches, which are reviewed, approved, and merged into the main branch. Fork and pull model:...
0 votes
2 answers
396 views
One azure-pipeline.yaml for staging and production
Currently I have two separate Azure DevOps Pipeline config files: azure-pipelines-staging.yaml azure-pipelines-production.yaml Really the only differences in them are the: trigger: branches: ...
3 votes
1 answer
589 views
Trunk Based Development - release branch testing
We are currently using Git flow branching strategy and looking to go to a trunk based strategy - although we are quite a ways away from getting there I am trying to get all my ducks in a row, ...
0 votes
3 answers
1k views
Should I use release branch to push my changes?
Should I use a release branch to push changes out to production or release it off master branch - the main pipeline where changes are merged by developers of their feature branches? Not to mention, ...
0 votes
1 answer
1k views
Recommended SVN branching strategy for DevOps
We are using SVN as our version control system and we are using the below standard layout for our projects. Tags Branches Trunk Trunk: -> Trunk will always hold the latest code changes. Branches:...
10 votes
2 answers
171 views
How to avoid branchageddon with large organisations?
How do you avoid a branchageddon situation when working with large organisations? We work with a number of large financial organisations whose approach is to not take updates to software, but ...
7 votes
1 answer
962 views
What is the cleanest branching strategy to use when creating reusable artifacts?
If I have 3 environments : integration, staging, and production, what is the cleanest branching strategy to use, assuming I want to reuse my deployed artifact? For example, should feature branches be ...