Questions tagged [git-flow]

The git-flow workflow defines a strict branching model designed around a project release. It provides a robust framework for managing larger projects. Use this tag for help with applying git-flow to your workflow, or for help with the supporting scripts (either the original scripts or the AVH Edition).

A workflow and a series of scripts for tagging and branching a development project that uses the Git distributed version control system.

The original scripts have not been updated since 2012. An updated fork of the scripts is git-flow AVH Edition, maintained by Peter van der Does.

1079 questions
0
votes
1 answer

General Git Branch, Working with Git Flow work flow

I've been using Git Flow to help manage branch and workflow. I love how it works, although have a general question when working with multi feature branches. For an example I would start a feature branch, make some adjustments. If I then create…
stonep
  • 309
  • 4
  • 22
-1
votes
2 answers

how to get remote updates to my local working copy in git

how do i update my local working copy of source code with current latest version of remote code? This is the situation: Suppose 2 people(A,B,C) are working on the project and they follows git flow.. There is master branch, and there is develop…
Boris
  • 103
  • 2
  • 10
-1
votes
2 answers

If a pull request is still pending, how do I continue working (Gitflow)?

So we are using GitFlow working schema. I have a branch named feature/foo, I just finished my ticket there and I created a Pull Request, that branch (feature/foo) is going to be merged with our head branch develop So now, I need to continue working…
-1
votes
1 answer

What are the correct step by step commands for gitflow workflow?

What does one complete lifecycle of gitflow look like? Which branch is pushed to production: release or main? I have done deep research on this topic. But these were the questions whose answers I couldn't find. Any suggestion gratefully received.…
Curious Learner
  • 1,182
  • 1
  • 4
  • 17
-1
votes
1 answer

How to find Conflicts in merge request before create

How to find git conflicts Before creating merge request? I want to find conflicts before create merge request and push that. if I test merge and not conflict exit branches merged and I don't want that.
AAV
  • 798
  • 1
  • 6
  • 23
-1
votes
1 answer

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 hotfixes im thinking that we should migrate to the…
-1
votes
1 answer

Two feature branches. Where to put modifcations?

I'm using typical git branche flow. The main branch is develop and feature branches are created when needed. Let's say, that I created feature-test branch. Next I created and tested one Class Test. Finally the branch was merged into develop. Now…
Mati
  • 753
  • 4
  • 20
-1
votes
1 answer

What is the right process in using Git Flow?

I am using Git Flow, "A successful Git branching model": https://nvie.com/posts/a-successful-git-branching-model/ but I do not fully understand it, so I am asking your help. In our project we are using gitlab and there are 2 branches from the…
user13094449
-1
votes
1 answer

What on earth is the relationship between Git and Git workflow?

I'm a bit confused about these two terms git & gitflow. I know that Git is one of the version control systems, and git workflow is something about 'master/develop/feature/release/hotfix branches'. But what on earth is the relationship between…
wawawa
  • 2,835
  • 6
  • 44
  • 105
-1
votes
1 answer

Git workflow for two type product with 80% similarity

I have a two type product with 80% basic code (Community Edition & Enterprise Edition). I have a little knowledge about git-flow and like it, but I don't know to integrate with my needs. Some Enterprise Edition feature shouldn't be include in…
Ehsan Ali
  • 1,362
  • 5
  • 25
  • 51
-1
votes
1 answer

git merge both directions crashes history

I'm used to work with sourcetree and git-flow. Before closing a feature branch I usually merge develop into it. To do so I right click the develop branch within my feature branch and choose 'merge develop into feature/...'. Afterwards I use the…
Kai
  • 51
  • 8
-1
votes
1 answer

Squashed feature branch appears as part of dev branch via Source Tree

I'm using Source Tree as Git GUI of choice. I'm trying to implement git-flow system, meaning that most of the commits will be done in feature branches. As you can see on this image, creating feature branches, pushing commits and merging them back to…
-1
votes
1 answer

Git removed all files

I just initialized a repository by applying git flow init git remote add origin git@gitlab.com:folder/project.git git add . I noticed that I needed to comment on a folder, then used git reset --hard And tried to add the folder to .gitignore, but…
dcandamil
  • 111
  • 2
  • 12
-1
votes
1 answer

GitFlow, when to merge between branches

I have introduced GitFlow to my Team and right now we are working using the following branch structure, which blend perfectly well with our internal workflows: Current Structure We have master which makes a pull request from dev every end of Sprint…
Raffaeu
  • 6,694
  • 13
  • 68
  • 110
-1
votes
1 answer

Git Flow for multiple teams

We have a situation regarding branches and versioning. e.g. We have a master branch with 2.0 version, now what it gets complicated is we have three teams working on the same project but in different sprints ending in different dates. Example Sprint…
Thyreme
  • 17
  • 6
1 2 3
71
72