
Git::Raw::Tag - Git tag class

version 0.24

use Git::Raw;
# open the Git repository at $path
my $repo = Git::Raw::Repository -> open($path);
# retrieve user's name and email from the Git configuration
my $config = $repo -> config;
my $name = $config -> str('user.name');
my $email = $config -> str('user.email');
# create a new Git signature
my $me = Git::Raw::Signature -> now($name, $email);
# create a new tag
my $tag = $repo -> tag(
'v0.1', 'Initial version', $me, $repo -> head -> target
);

A Git::Raw::Tag represents a Git tag.
WARNING: The API of this module is unstable and may change without warning (any change will be appropriately documented in the changelog).

Create a new tag given a name, a message, a Git::Raw::Signature representing the tagger and a target object.
Retrieve the tag corresponding to $id. This function is pretty much the same as $repo->lookup($id) except that it only returns tags.
Run $callback for every tag in the repo. The callback receives a tag object. A non-zero return value stops the loop.
Delete the tag. The Git::Raw::Tag object must not be accessed afterwards.
Retrieve the id of the tag, as string.
Retrieve the name of the tag.
Retrieve the message of the tag.
Retrieve the Git::Raw::Signature representing the tag's tagger.
Retrieve the target object of the tag.

Alessandro Ghedini <alexbio@cpan.org>

Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.