The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::Raw::Reference - Git reference class

VERSION

version 0.26

DESCRIPTION

A Git::Raw::Reference represents a Git reference.

WARNING: The API of this module is unstable and may change without warning (any change will be appropriately documented in the changelog).

METHODS

lookup( $name, $repo )

Retrieve the reference with name $name in $repo.

delete( )

Delete the reference. The Git::Raw::Reference object must not be accessed afterwards.

name( )

Retrieve the name of the reference.

type( )

Retrieve the type of the reference. Can be either "direct" or "symbolic".

target( )

Retrieve the target of the reference. This function returns either an object (Git::Raw::Blob, Git::Raw::Commit, Git::Raw::Tag or Git::Raw::Tree) for direct references, or another reference for symbolic references.

owner( )

Retrieve the Git::Raw::Repository owning the reference.

is_branch( )

Check if the reference is a branch.

is_remote( )

Check if the reference is remote.

AUTHOR

Alessandro Ghedini <alexbio@cpan.org>

LICENSE AND COPYRIGHT

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.