All Questions
Tagged with git-flow continuous-integration
25 questions
1
vote
0
answers
142
views
How do I manage PR and CI pipelines in Git Flow strategy?
If I deploy to prod from the latest release branch forked from dev how can I integrate PR to review code?
Also, if I would like to run a test integration pipeline automatically when a pull request is ...
8
votes
1
answer
13k
views
GitFlow: How to maintain previous releases?
I am currently working on a workflow for my team.
A suggestion we received was to use the GitFlow scheme. This scheme can be put on a chart as follow:
However, I have one question about how to manage ...
9
votes
2
answers
2k
views
How to correctly create Python feature branch releases in development? (pip and PEP-440)
I develop a Python library using Gitflow development principle and have a CI stage for unit testing and package upload to a (private) PyPI. I want to consume the uploaded package for testing purposes ...
0
votes
1
answer
444
views
Avoid Gitlab-CI build for develop branch on finish release (git-flow)
We are using Git-Flow with automatic builds and releases using Gitlab-CI.
Every commit on the develop branch triggers the build stage.
Every commit on the master branch triggers first the build stage ...
-1
votes
1
answer
2k
views
Deployment triggers on new release branch
I've been doing some research for our team to migrate to a new branching strategy. Currently we are using the github flow with only master and feature branches. But since we have some trouble with ...
1
vote
0
answers
38
views
Defining a Git process
I am defining a CI/CD process with git and aws codeCommmit, here are the steps:
A release branch is created from master
Project branch is created from the release branch
Developers create as many ...
0
votes
1
answer
507
views
git-flow: how to create a release branch without all features merged into develop?
In a normal git-flow process, the life cycle expects to have one or more feature branches that are joined back into develop when features are completed.
Then a release branch is created from develop ...
1
vote
1
answer
882
views
Run a build several times in the same chain in Teamcity
I have a bulid configuration A for merging feature branches in my project, which runs configuration B for several different modes (dev and prod). B compiles the project and runs tests. The mode is ...
11
votes
2
answers
3k
views
Github flow QA and UAT testing
I have recently read about the github flow. I am using gitflow as of now and I see that Github flow looks very interesting because it is not as heavy in terms of workflow as gitflow.
What I don't ...
5
votes
1
answer
3k
views
CircleCI filter pull requests
I have a Gitflow branch structure like this:
master (default)
develop
feature/header
I'm using CircleCI with the "Only build pull requests" feature enabled. With this enabled, it will build all ...
2
votes
0
answers
471
views
Azure DevOps Release pipeline for create-react-app and GitFlow?
We have a creat-react-app application, which includes a couple of variables that are different (react) build time, depending on where the build will be deployed. For example, we need to specify build ...
1
vote
0
answers
877
views
Git Flow and Continuous Integration/Continuous Delivery
I'm trying to get my head around what steps are involved in using Git flow with a CI/CD pipeline (nb delivery not deployment)
I figured I could have a Jenkins job which is triggered by pushes to the ...
1
vote
1
answer
4k
views
Git flow guideline for CI and CD
I would like to Integrate CI and CD with VSTS.
I was going through the different link but getting confused, what process to follow. Attached git flow image
In this flow .
The integration release ...
0
votes
1
answer
629
views
Git flow for backend system
I am trying to follow the git flow process to deploy my backend service. The backend service is a graphQL API and we have a golden rule of NEVER break backward compatibility.
I can't see why do I ...
-1
votes
1
answer
43
views
What are other benefits of using release mode in continuous integration practice?
A single release branch into which shipped code is merged and tagged by release version.
The stable code is merged, from the master, into the release branch when preparing for a release.
The CI ...
0
votes
1
answer
466
views
Pull request communication strategy needed
Doing trunk based development to achieve continuous deployment. And this is our branching strategy.
master > whats live in production
release > test passed and release point created by CI ...
2
votes
4
answers
11k
views
Bamboo build plan on branches but not on develop (aka conditional build)
This is an attempt to implement a conditional build across branches, impossible by default because of BAM-11257, open since 2012, still pending.
Context:
Bamboo 5.10.3
Gitflow branching strategy ...
42
votes
3
answers
24k
views
Continuous integration and continuous delivery with git-flow
We have been doing continuous integration and continuous delivery since a while with Subversion commits as the pipelines triggers. Recently, we started using git in some projects with git-flow and we ...
0
votes
1
answer
574
views
Git: Unable to remove a "revert' commit
We are using git work flow with a develop branch for integration and feature branches for individual features.
Created a feature branch via:
git fetch
git checkout -b new-branch origin/develop
(...
2
votes
1
answer
806
views
Adhering to git flow rules while taking the App Store review times into account
We've been using git flow for our iOS projects happily for a while now. However, something dawned on me today which means we're actually not following the git flow specification.
When we start doing ...
3
votes
1
answer
295
views
Continuous integration - git flow
I'm really nooby in 'Continuous integration'. And have a question about it.
Is it possible to create jar, ear or war file and deploy it on jboss every time I merge my develop branch (release) with ...
2
votes
1
answer
2k
views
CI: One git repository fits it all? Or: gitflow for multiple projects
Until now my team and I do and did not have anything like an automated delivery process in production. Which may sound surprising to some folks, but it simply did not seem to be essential to our daily ...
7
votes
1
answer
2k
views
How to build the latest git flow release branch in Jenkins?
I'm trying to set up continuous integration in Jenkins for git flow style development. I thought I would create three jobs to build RPM packages: for master, develop and the latest release branch.
...
9
votes
1
answer
4k
views
git workflows: how to integrate and test feature branches without continuous delivery?
I like the "github flow" workflow described by Scott Chacon very much: http://scottchacon.com/2011/08/31/github-flow.html
He describes why github does not use the git flow workflow described by ...
2
votes
1
answer
2k
views
Git workflow with multiple stable branches, syncing with svn
Our project has been converted from svn to git. Developers are now using git-svn, but would like to
move on to harness more of the power under the hood. Wishlist:
powerful branching, e.g topic/...