Questions tagged [hubflow]

A fork of gitflow which is github centric.

HubFlow is an open source fork of gitflow.

The main differences between the original GitFlow tools and HubFlow are:

  • by default, commands push to / pull from GitHub wherever it is appropriate
  • added additional commands (such as feature push and feature pull) to fill in some gaps in the original GitFlow tools

Useful links

7 questions
42
votes
3 answers

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 get merged into develop, and not master. Some of…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
7
votes
2 answers

How to do add a fix in the release branch using git flow / hubflow

In our project we are following repo model as per http://nvie.com/posts/a-successful-git-branching-model/ . I had been adding features into the develop branch until now, however now our project has created a release branch and I need to add a fix…
jay
  • 791
  • 8
  • 20
2
votes
1 answer

how to use a remote other than origin while hubflow feature start

I recently forked an open source git(origin) and now the requirement is such that the changes need to be kept private. While these changes could be pushed to public fork in near future, for now I need to keep them private. The route I've taken to…
Anupam Juniwal
  • 309
  • 1
  • 3
  • 11
2
votes
2 answers

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 git hf update I get prompted for my GitHub…
Kim Stacks
  • 10,202
  • 35
  • 151
  • 282
1
vote
1 answer

fatal: ambiguous argument 'origin/feature/appjhagsd': unknown revision or path not in the working tree

I am using hubflow tools. I am simply cloning an empty repository. Adding a test file and the commit changes and then push new changes to repository via git hf push But everytime i am getting same error message : fatal: ambiguous argument…
Farhan
  • 751
  • 1
  • 9
  • 17
1
vote
0 answers

Install hubflow in Windows

How to install hubflow in Windows? I have tried the steps mentioned in this link but didn't work.
Cheguvera
  • 121
  • 3
0
votes
1 answer

Git Hubflow Switch to another Branch

We use git hubflow. Each tam member have his own feature branch. I need to switch from my branch to another one. Let's decide I am working in feature/branch_1, and my colleguae in feature/branch_2. branch_1 contains parent_project and subprogect_1…