Metadata-Version: 2.1
Name: auto-git-flow
Version: 1.0.2
Summary: Git flow wrapper to save few lines
Home-page: https://gitlab.com/pypa/sampleproject
Author: Constantin De La Roche
Author-email: cdlr75@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://gitlab.com/cdlr75/auto-git-flow/issues
Project-URL: Source, https://gitlab.com/cdlr75/auto-git-flow/
Keywords: git git-flow wrapper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: asynctest ; extra == 'test'
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: pycodestyle ; extra == 'test'
Requires-Dist: pylint ; extra == 'test'

Auto git flow
[![PEP8](https://img.shields.io/badge/code%20style-pep8-green.svg)](https://www.python.org/dev/peps/pep-0008/)
===

## Features

- Auto complete the versions when typing `git flow release start` or `git flow hotfix start`

## Usage

Install
```sh
pip install auto-git-flow
```

Start a new minor release *X.X+1.X*
```sh
gfrs # instance for "git flow release start X.X+1.X"
```

Start a new major release *X+1.X.X*
```sh
gfrs m # instance for "git flow release start X+1.X.X"
gfrs -m
gfrs --major
```

Start a new hotfix *X.X.X+1*
```sh
gfhs # instance for "git flow hotfix start X.X.X+1"
```

## Note

- Expected (and supported) tag format is "X.X.X"
- Checkout [changelogfromtags](https://gitlab.com/cdlr75/changelogfromtags) to auto generate a changelog from tags


