carrlabs/git-wrapper

A wrapper for the git command line executable, based on YiiGit (https://github.com/phpnode/YiiGit). Allows access to all git commands via a simple object oriented interface.

dev-master 2013-10-03 04:16 UTC

This package is not auto-updated.

Last update: 2024-04-09 03:57:14 UTC


README

Introduction

A wrapper for the git command line executable, based on YiiGit. Allows access to all git commands via a simple object oriented interface.

Usage examples

Add some files and folders to git

$repository = new \CarrLabs\GitWrapper\GitRepository('path/to/your/git/repo');
$repository->add('somefile.txt');
$repository->add('somedirectory');

Commit some files with git

$repository->commit('Added some files');

Checkout an existing branch

$repository->checkout('some-existing-branch');
echo $repository->getActiveBranch()->name; // some-existing-branch

Checkout a new branch

$repository->checkout('some-new-branch', TRUE);
echo $repository->getActiveBranch()->name; // some-new-branch

List all branches

foreach($repository->getBranches() as $branch)
{
	echo $branch->name . "\n";
}

List all tags with metadata

foreach($repository->getTags() as $tag)
{
	echo $tag->name . "\n";
	echo $tag->getAuthorName() . "\n";
	echo $tag->getAuthorEmail() . "\n";
	echo $tag->getMessage() . "\n";
}

List all the commits on the current branch

foreach($repository->getActiveBranch()->getCommits() as $commit)
{
	echo $commit->getAuthorName() . ' at ' . $commit->getTime() . "\n";
	echo $commit->getMessage() . "\n";
	echo str_repeat('-', 50) . "\n";
}

List all the files affected by the latest commit

foreach($repository->getActiveBranch()->getLastCommit()->getFiles() as $file)
{
	echo $file . "\n";
}

Check if a tag exists on the default remote ('origin')

$repository->getRemote()->hasTag('myTag');

List all branches on a remote repository called 'upstream'

foreach($repository->getRemote('upstream')->getBranches() as $branch)
{
	echo $branch . "\n";
}

API

\CarrLabs\GitWrapper\GitRepository

setPath($path, $createIfEmpty = false, $initialize = false)
getPath()
run($command)
add($file)
rm($file, $force = false)
commit($message = null, $addFiles = false, $amend = false)
status()
describe($options = '')
checkout($branchName, $create = false, $force = false)
clean($deleteDirectories = false, $force = false)
cloneTo($targetDirectory)
cloneFrom($targetDirectory)
cloneRemote($sourceUrl)
push($remote, $branch = "master", $force = false)
fetch($repository)
getActiveBranch()
getBranches()
hasBranch($branch)
createBranch($branchName)
deleteBranch($branchName, $force = false)
getCommit($hash)
getTags()
getTag($name)
hasTag($tag)
addTag($name, $message, $hash = null)
removeTag($tag)
getRemotes()
getRemote($remote = null)
hasCommit($hash)

\CarrLabs\GitWrapper\GitCommit

getAuthorName()
getAuthorEmail()
getTime()
getSubject()
getMessage()
getNotes()
getParents()
getFiles()

\CarrLabs\GitWrapper\GitBranch

getCommits()
getCommit($hash)
getLastCommit()

\CarrLabs\GitWrapper\GitTag

push($remote = null)
getAuthorName()
getAuthorEmail()
getMessage()
getCommit()

\CarrLabs\GitWrapper\GitRemote

getBranches()
hasBranch($branch)
deleteBranch($branchName)
getTags()
hasTag($tag)