NAME
Dist::Zilla::Plugin::GitFlow - develop perl modules with git-flow and Dist::Zilla
VERSION
version 0.010
SYNOPSIS
In your dist.ini:
[@GitFlow]
When you want to release the module on the develop branch:
$ git flow release start 0.003
#
# edit and commit
#
$ dzil release
$ git flow release finish 0.003
After finishing release, then upload your released module:
$ git checkout v0.003
$ dzil build
$ cpan-upload YourModule-0.003.tar.gz
If you want to make specific version module tarball:
$ git checkout v0.002
$ dzil build
DESCRIPTION
This set of plugins for Dist::Zilla can do interesting things for module authors using git to track their work. The following plugins are provided in this distribution:
It also provice plugin bundle:
This plugin use it's own next version and next release module, so do not use original Dist::Zilla::Plugin::NextRelease and Dist::Zilla::Plugin::NextVersion plugins.
SEE ALSO
I stolen almost code from Dist::Zilla::Plugin::Git. Please check original code.
You can look for information on this module at:
A successful Git branching model
git-flow git repository
See open / report bugs
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-Plugin-GitFlow
Git repository
AUTHOR
Keedi Kim - 김도형 <keedi@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Keedi Kim.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.