1,105 questions
6
votes
0
answers
125
views
How to manage Entity Framework migrations and databases when using Git version control?
We are planning to use a Gitflow workflow and a shared test database. We currently use EF 6.5.1 and have automatic migrations disabled.
Problem: if a developer runs Update-Database (or dotnet ef ...
-3
votes
1
answer
158
views
How can I dissect a shell 1-liner workflow to understand what this git command does? [closed]
I am updating an existing pipeline on GitLab that creates an automatic cascade on GitLab.
When a merge request is merged, the pipeline is triggered to perform an automatic commit to a lower branch (if ...
0
votes
0
answers
139
views
How to override default GitVersion behavior to bump version using both tags and commit messages (GitFlow mode)
I'm using GitVersion with the default GitFlow workflow (workflow: GitFlow/v1), and I want to leverage both:
Use annotated Git tags (e.g. v1.2.0) to create stable releases
Use +semver: in commit ...
0
votes
1
answer
67
views
Creating a release picking a few commits from the Main branch
I have a trunk based branching workflow.
What I want to do is to create a release branch where I can pick a few commits (Not all commits) from the main branch such that it should keep the version ...
0
votes
1
answer
220
views
How to manage multiple version at the same time in TBD?
Our team is struggling with frequent merge conflicts due to managing multiple versions simultaneously. We're looking for a workflow that reduces these conflicts.
Our Environments:
We maintain multiple ...
1
vote
0
answers
272
views
How to Configure GitVersion for Stable Main Versions and Pre-Release Feature Tags with Patch Increments?
I'm trying to set up GitVersion (dotnet-gitversion tool version 6.1) so that:
The main branch always produces stable versions without any pre-release tags.
All branches, including feature branches, ...
0
votes
1
answer
55
views
Git-flow Release branches and SaaS product development
The Git-flow branching strategies include a feature branch "level" that exists between the develop and master branches.
I understand the rationale for release branches in scenarios where we ...
-1
votes
2
answers
93
views
branching strategy with gitflow
I have some trouble understanding how git flow work.
especially when I use bitbucket and sourcetree to see if the branching is correct.
I tried its not.
here are the commands I issued:
git clone git@...
0
votes
0
answers
63
views
Git release flow - versions STG vs PROD
Trying to implement simple release git flow and not understand which version I need to use for PROD.
Example:
3 branches - develop, release (for staging) and master (for prod). I can`t change this, I ...
1
vote
1
answer
68
views
git branching model and version to be tested
I am willing to addopt the git branching model described here (which led to git-flow branching model).
From my understanding:
A release branch is created from the develop branch when features and ...
0
votes
1
answer
35
views
The file is not visible even though I changed the branch using Gitflow
I cloned it again and set up Gitflow to change the branch from main to development, but the file is not visible.
After deleting the file, I cloned it again and set up Gitflow again, but it was the ...
1
vote
1
answer
68
views
Why is Gitflow release operation doing so many actions in Bitbucket
I learned that release action in GitFlow is merely a merge develop branch (latest update) to the release/XXX branch with a TAG on it.
I would like to do simply as following:
git checkout -b release/...
0
votes
1
answer
68
views
Problem moving bugfix on master (git flow branching strategy)
I had small problem with git flow and I'm trying to find right solution for it.
I tried to show situation with image I attached.
So...
Master had some bug, feature 1 had small bug, witch already was ...
0
votes
1
answer
262
views
How to manage hotfixes across main and dev branches in Git
I have two branches: main for the old release and dev for the latest release. I need to manage hotfixes effectively across these branches. Specifically, I need to:
Merge features from dev to main ...
1
vote
2
answers
226
views
Azure DevOps - Traceability of ALL Work Items contained in a given release
I need to have full traceability between PRs and Releases -- I want to be able to see which work items were implemented in which release.
Azure DevOps apparently has a limit of 100 commits - which ...