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
- First, download the latest release from our project’s Releases page
- Extract the binary to a location in your PATH, such as
/usr/local/bin/
- Make it executable by typing
chmod +x /path/to/git-flow
Quick Start
- Initialize git-flow in your repository:
git flow init
- Start a new feature:
git flow feature start my-feature
- 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