git-flow is a popular workflow that extends the verbs available to git and helps handle moving changes between feature, development, release, hotfix, support, and production branches.

learn more… | top users | synonyms

1
vote
1answer
17 views

Store git-flow branch naming configuration in the repository

Currently, each user has to configure Git-flow first after having cloned the repository. How to store this branch naming configuration in a committable file (to be stored in the repository), so after ...
2
votes
3answers
40 views

Git-flow and master with multiple parallel release-branches

We are trying to adopt the successful Git branching model implemented by git-flow. Now, we are working on at least two release-branches, one for the latest stable release and one for the next ...
1
vote
1answer
42 views

Git flow track - already exists

I am learning GIT (with Git Flow) and I know its not good to use StackOverflow instead of a book. I am involved in a project. There are two feature branches named F1 and F2 maintained by groups G1 ...
2
votes
1answer
31 views

Git Flow - Syncronising Two Unifinished Features

We are working on one of our accadamic projects. Recently discovered Git Flow and are quite excited about it. But I have an issue which I would be glad if could be clarified. Our group, devided in to ...
0
votes
1answer
15 views

Does tag record state of branch or the entire repository?

I have two branches "master" and "develop". I have been tagging the master branch with version numbers (i.e. "v1.2.3") and have started to tag BETA releases in a similar fashion ("v2.3.4-beta-1") ...
1
vote
1answer
23 views

Merge a branch with Git Flow keeping the branch still alive

I'm starting using git flow and I understand that doing: git flow feature start my-feature git flow feature finish my-feature I create a feature and then, when i've finished my changes, I merge it ...
-1
votes
3answers
54 views

What are the benefits of creating feature branches? [closed]

When using Git for source control, what are the benefits of using feature branches over just committing to the "develop" branch?
1
vote
2answers
79 views

Finishing a feature branch with GIT Flow

From my understanding one of the advantages of creating feature branches is so that you can easily see where large groups of commits have been merged into the develop branch. Upon finishing a feature ...
1
vote
0answers
31 views

Finish Feature with GIT Flow failed first time worked second?

I am using SourceTree with a BitBucket repository and have been using GIT Flow. I have been working on my first feature branch and have decided to use the "Finish Feature" option to merge it into the ...
2
votes
2answers
57 views

Following git-flow how should you handle a hotfix of an earlier release?

If you try to follow the git-flow branching model, documented here and with tools here, how should you handle this situation: You have made a 1.0 release and a 2.0 release. Then you need to make a ...
9
votes
2answers
156 views

Maven: Bind plugin execution to the execution of another plugin, not to a lifecycle phase

Note regarding the accepted answer: I accepted the answer because of strong circumstantial evidence. Nonetheless, this is circumstantial evidence, so take it with a grain of salt. How can I have a ...
0
votes
1answer
53 views

Using git flow, how would I revert back to a previous release?

I'm using git flow for my projects. When a release has been merged into the master branch it is tagged with the release version (e.g. 1.2.0) and deployed to my production servers. Now I want to ...
1
vote
2answers
40 views

Interactive rebase: modify a recent commit among a bunch of --no-ff merges

The goal I want to modify a recent commit, using rebase. The magic command is git rebase -i Let's say you're trying to delete the commit-in-question First, find out how far back that commit ...
0
votes
1answer
118 views

Revert merge Git-Flow

I'm using SourceTree and Git-Flow pattern. Now I have prepared a release for my beta-testers to test so I created a new release/v1.0.1 branch. But my mind slipped and I decided to finish (merge into ...
1
vote
1answer
55 views

How do I use git flow with a staging environment?

We are using git-flow to handle hotfixes & features, with a develop branch & the master branch (for production). What is the easiest way to add a staging branch to the mix so that we can ...
0
votes
1answer
174 views

git flow installer fails to install shFlags on the Mac OS X 10.8.3

Tried this several times including nuking the previous download and manually getting the submodule. Does anyone have a workaround? SilverFir-2:SRC mike$ sudo ./git-flow-installer ### gitflow ...
0
votes
0answers
79 views

Capistrano Symfony2 Gitflow deploying test env to staging server

Im using gitflow as a workflow between our team. We all work on our local machine, we have 3 external servers called 'Development', 'Staging' and 'Production' for deployment and a central GIT ...
3
votes
3answers
77 views

Is there a way to make git flow show the commands it is executing behind the scenes?

Is there any way to make git-flow tell me ahead of time the exact git commands it will execute when I do a flow command; or tell me as it is dong it? All i can see the output and a summary?
4
votes
3answers
164 views

git-flow vs. normal git commands

I've read a couple of information about git-flow, but still don't understand why it should be used instead of plain git commands. To me it looks like it propagates a (fairly complicated) branch-setup. ...
4
votes
2answers
77 views

git workflow + preproduction

Need some help with organizing branches and workflow. Preconditions: 10 developers with git, 0 unit tests coverage, 10^5 lines of code. In our repo with have master branch which acts as production. ...
1
vote
2answers
180 views

Simple gitflow model with multiple repositories without submodules/subtree?

We have a structure similar to Best Practice for Git Repositories with multiple projects in traditional n-tier design, with the following repositories: Shared ProjA ProjB Where ProjA and ...
0
votes
1answer
105 views

Git-flow: why an 'unable to push to unqualified destination' with 'git flow release finish'?

Why am I getting an error about pushing to unqualified destination in the following? $ git flow release start v1.03 Switched to a new branch 'release/v1.03' (Followed by a bunch of other normal ...
0
votes
0answers
23 views

What are the Base Commit Rules for arc when using git flow?

Could somebody share the base-commit-rule set for arc (phabricator) to use phabricator with the git flow?
4
votes
3answers
136 views

Set the develop branch as the default for a pull request

I want to make the pull request merge into develop from the feature branch by default. I'm advocating the use of git flow, so when a pull request is submitted for a feature, the pull request needs to ...
2
votes
1answer
76 views

Does git-flow work together with git-svn

As I'm currently bound to a subversion repository, but using git-svn fine, I was wondering if this setup could also be used together with git-flow? What benefits would git-flow bring? What drawbacks ...
2
votes
1answer
203 views

Symfony2 + GitFlow + Capifony + Capistrano-ext

I'm currently developing a website using Symfony2 and Gitflow. I have 2 external servers called 'development', 'staging' and 'production' and a central GIT repository on Github. I'm looking to use ...
0
votes
1answer
55 views

How to change a git repo to a git flow repo

If I already have a git repo, how can I change it to a git flow style repo?
4
votes
2answers
130 views

Git push fails to push to origin - no such ref

I'm having trouble pushing commits on a hotfix branch created with git-flow to the remote repository. Here is the error: $ git push origin hotfix/MyHotfix Counting objects: ... etc To {my remote ...
1
vote
1answer
118 views

How to resume Git-Flow after a break cause by a merge conflict on a finish command?

Do i really need to complete all the step by hand every time I "Finish" a branch and there is a conflict merging it with Git-Flow? Or there's a way to resume after all the conflict are solved?
1
vote
1answer
76 views

How to push the “develop” branch to the remote “origin”?

When I do git flow init it creates a master and develop branches. When I add the remote I do git remote add origin git@github.com:NewB/our-repo.git. Now I have git flow initialized on my local repo ...
2
votes
2answers
77 views

What is the difference between the following the git config

.git/config 1 [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = ...
4
votes
4answers
149 views

`git flow release finish` non-interactively

How I can use git flow release finish in a manner that doesn't ask for merge commit messages? The -m flag doesn't provide this, as I expected. The goal of course is to be able to script this in such ...
1
vote
2answers
135 views

git flow release finish with a message that contains spaces

How can I provide a real message to git flow release finish? This is what my attempt and it's output look like: > git flow release finish -m 'Release 0.0.4 - Fixing a bug' 0.0.4 flags:FATAL the ...
1
vote
1answer
88 views

HubFlow: certain HubFlow commands prompt me for my GitHub credentials multiple times. Is there a way around this?

I am currently learning the HubFlow way of managing versioning and workflow using Git and GitHub. I created this dummy repository to get some hands-on experience. I have tried certain commands like ...
1
vote
0answers
61 views

hubflow: what command should I do if I want to go from 0.0.1-rc2 to 0.0.1 on the master branch?

I am currently learning the HubFlow way of managing versioning and workflow using Git and GitHub. I created this dummy repository to get some hands-on experience. I have tried the following: ...
0
votes
1answer
114 views

Git-Flow Alias With Tab Completion

I have been attempting to get this code to work but have had no success.. Basically I want to enable completion for git-flow commands so that I can quickly and accurately checkout the proper ...
3
votes
1answer
153 views

Versioning and release management with multiple products with shared code base

I am currently trying to figure out, how to do release management with git flow in a scenario where I have one git repository with about 15 projects in two solutions plus scripts for the database. ...
3
votes
3answers
92 views

Merging release into master with no resulting diff

At work we have a git workflow, based on git flow. We have 3 main branches: dev, release and master Dev is what we are currently working on, master is what we have in production and release is when ...
1
vote
1answer
212 views

Supporting multiple versions with Successful Git Branching Model

At our company we are moving from SvN to Git (yeah, better late than never). With that, we also try to streamline the versioning process. To do that I found an interesting article: Successful Git ...
1
vote
2answers
112 views

zsh overzealously trying to correct feature to features

I am using git and zsh. Our boss is using git-flow. Zsh keeps asking me if I mistyped 'features' as 'feature'. A colleague stopped using zsh out of fury for this very reason, we must fix this problem ...
3
votes
2answers
405 views

How do I Uncommit changes using git

I'm using git flow, and without thinking, I've commited code to the wrong branch (feature), and then published it. I need to take that code, remove it from say, branch 1, and move it into the correct ...
1
vote
2answers
123 views

How to integrate GitFlow into existing project?

I need to integrate existing project into GitFlow branching model. All guides I've seen so far takes a clear repo as a base. Is it possible to run GitFlow over existing Git repository and preserve ...
0
votes
1answer
50 views

What is the best way to get to production from the Git Flow branching model? [closed]

I have recently joined a new team of developers and we are incorporating Git and Git Flow branching models into our work environments. So far we have the develop and master branches set up in our ...
0
votes
1answer
78 views

Add feature and release branches to git-flow

We already have a couple of feature and release branches on the go that aren't currently being tracked by git flow (we've only just come across git-flow). Is there any way to add these to git flow as ...
1
vote
2answers
70 views

git flow releasing selected features

I am trying to introduce Git flow to my team. We are a fairly small team and quite agile. We want to release once a day and this means we have limited time towards testing all the changes in the day. ...
1
vote
1answer
97 views

Git Error: “is in submodule”

I'm using gitflow on my website, however I downloaded a 3rd party library using Git and I can't add this to my main repo. If I try to I get the following message: fatal: Path 'FILENAME' is in ...
1
vote
1answer
385 views

Merging git-flow hotfixes in sourcetree with fast-forward

I am having difficulties understanding how to merge correctly hotfixes (in the git-flow sense) in SourceTree. The SourceTree website states: Once you’ve made your changes, the hotfix branch is ...
1
vote
1answer
49 views

how to cut wrong commit [git]

I'm trying to apply gitflow approach in our development process, theoretically I like it. But there is one point what is not covered anywhere... Everyone pushing their results to develop branch. In ...
0
votes
2answers
67 views

git commit different set of files to develop and master

I have recently started developing a new library, and use Git for revision control. I decided to follow the immensely popular blog post A successful Git branching model to manage branching. It is ...
1
vote
2answers
145 views

Development and testing branch in @nvie's Git branching model?

I've read about @nvie's Git branching model and gitflow and I think this is a good model to use for a project (web application) I'm currently working on. I'm the lead developer of the project and I ...

1 2 3