A collection of Git extensions to provide high-level repository operations.
# To initialize it inside an existing git repository:
git flow init
# To start developing on a feature branch based on 'develop':
git flow feature start <feature>
# To finish development on a feature branch, merging it into the 'develop' branch and deleting it:
git flow feature finish <feature>
# To publish a feature to the remote server:
git flow feature publish <feature>
# To get a feature published by another user:
git flow feature pull origin <feature>