Gal Segal
Gal Segal

Reputation: 41

Feature Branch Workflow Tool

Is there an extension for git, like GitFlow but uses the Feature Branch Workflow, meaning:

Upvotes: 1

Views: 110

Answers (1)

Wolfram
Wolfram

Reputation: 8052

There are git-extras, a collection of wrapper commands for git. You could have a look at pull-request, which creates a PR on GitHub (if you use GitLab instead, check their API to port this).

Some other interesting commands (not adding much to vanilla git though):

Also there is hub, having a similar command git pull-request that create a PR for the current feature branch.

I think, these are not really what you want, but – depending on what platform you use for pull requests – you could combine some commands in a suite that comes quite close and support your workflow.

Upvotes: 1

Related Questions