Quick Start

Installation

Installing git-flow-next is a straight-forward process. We currently provide you with the option to use Homebrew (Mac only) or via downloading the latest release from our releases page.

1. Homebrew (Mac only)

Assuming you already have Homebrew installed, you can install git-flow-next with the following command:

brew install gittower/formula/git-flow-next

This is the recommended way if you are on a Mac.

2. Manual Installation

  1. First, download the latest release from our project’s Releases page
  2. Extract the binary to a location in your PATH, such as /usr/local/bin/
  3. Make it executable by typing chmod +x /path/to/git-flow

Quick Start

  1. Initialize git-flow in your repository:
git flow init
  1. Start a new feature:
git flow feature start my-feature
  1. Finish the feature:
git flow feature finish my-feature

At any point, use the --help flag to access the entire list of commands available at your disposal.

git-flow-next --help

Visit this page for the entire list of available commands.