Once the release is done, this plugin will record this fact in git by committing changelog and dist.ini.
The commit message will be taken from the changelog for this release. It will include lines between the
current version and timestamp and the next non-indented line, except that blank lines at the beginning or
end are removed.
Warning: If you are using Git::Commit in conjunction with the NextRelease plugin, "[NextRelease]" must
come before "[Git::Commit]" (or "[@Git]") in your dist.ini or plugin bundle. Otherwise, Git::Commit will
commit the Changes file before NextRelease has updated it.
The plugin accepts the following options:
• changelog - the name of your changelog file. Defaults to Changes.
• allow_dirty - a file that will be checked in if it is locally modified. This option may appear
multiple times. The default list is dist.ini and the changelog file given by "changelog".
• allow_dirty_match - works the same as allow_dirty, but matching as a regular expression(s) instead of
an exact filename(s).
• add_files_in - a path that will have its new files checked in. This option may appear multiple
times. This is used to add files generated during build-time to the repository, for example. The
default list is empty.
Note: The files have to be generated between the phases BeforeRelease <-> AfterRelease, and after
Git::Check + before Git::Commit.
• commit_msg - the commit message to use. Defaults to "v%V%n%n%c", meaning the version number and the
list of changes. The formatting codes are documented under Dist::Zilla::Role::Git::StringFormatter.
• time_zone - the time zone to use with %d. Can be any time zone name accepted by DateTime. Defaults
to "local".