PHP Class Horde_Vcs_Git, horde

Constructor args:
'sourceroot': The source root for this repository
'paths': Hash with the locations of all necessary binaries: 'git'
Author: Chuck Hagenbuch ([email protected])
Author: Michael Slusarz ([email protected])
Inheritance: extends Horde_Vcs_Base
Afficher le fichier Open project: horde/horde

Méthodes publiques

Свойство Type Description
$version string The git version

Protected Properties

Свойство Type Description
$_branchlist array The list of branches for the repo.
$_diffTypes array The available diff types.
$_driver string The current driver.
$_features array Driver features.

Méthodes publiques

Méthode Description
__construct ( $params = [] )
abbrev ( string $rev ) : string Returns an abbreviated form of the revision, for display.
annotate ( $fileob, $rev ) TODO
checkout ( $file, string $rev ) : resource Function which returns a file pointing to the head of the requested revision of a file.
getBranchList ( ) TODO
getCommand ( ) TODO
getDefaultBranch ( )
getRevisionRange ( Horde_Vcs_File_Base $file, string $r1, string $r2 ) : array Create a range of revisions between two revision numbers.
isFile ( $where, $branch = null ) TODO
isValidRevision ( $rev ) TODO
runCommand ( string $args ) : array(resource, Runs a git commands.

Méthodes protégées

Méthode Description
_diff ( Horde_Vcs_File_Base $file, string $rev1, string $rev2, array $opts ) : string Obtain the differences between two revisions of a file.
_getRevisionRange ( Horde_Vcs_File_Git $file, $r1, $r2 ) TODO

Method Details

__construct() public méthode

public __construct ( $params = [] )

_diff() protected méthode

Obtain the differences between two revisions of a file.
protected _diff ( Horde_Vcs_File_Base $file, string $rev1, string $rev2, array $opts ) : string
$file Horde_Vcs_File_Base The desired file.
$rev1 string Original revision number to compare from.
$rev2 string New revision number to compare against.
$opts array The following optional options: - 'num': (integer) DEFAULT: 3 - 'type': (string) DEFAULT: 'unified' - 'ws': (boolean) DEFAULT: true
Résultat string The diff text.

_getRevisionRange() protected méthode

TODO
protected _getRevisionRange ( Horde_Vcs_File_Git $file, $r1, $r2 )
$file Horde_Vcs_File_Git

abbrev() public méthode

Returns an abbreviated form of the revision, for display.
public abbrev ( string $rev ) : string
$rev string The revision string.
Résultat string The abbreviated string.

annotate() public méthode

TODO
public annotate ( $fileob, $rev )

checkout() public méthode

Function which returns a file pointing to the head of the requested revision of a file.
public checkout ( $file, string $rev ) : resource
$rev string Revision number to check out
Résultat resource A stream pointer to the head of the checkout.

getBranchList() public méthode

TODO
public getBranchList ( )

getCommand() public méthode

TODO
public getCommand ( )

getDefaultBranch() public méthode

public getDefaultBranch ( )

getRevisionRange() public méthode

Create a range of revisions between two revision numbers.
public getRevisionRange ( Horde_Vcs_File_Base $file, string $r1, string $r2 ) : array
$file Horde_Vcs_File_Base The desired file.
$r1 string The initial revision.
$r2 string The ending revision.
Résultat array The revision range, or empty if there is no straight line path between the revisions.

isFile() public méthode

TODO
public isFile ( $where, $branch = null )

isValidRevision() public méthode

TODO
public isValidRevision ( $rev )

runCommand() public méthode

Uses proc_open() to properly catch errors and returns a stream with the command result. fclose() must be called manually on the returned stream and proc_close() on the resource, once the output stream has been finished reading.
public runCommand ( string $args ) : array(resource,
$args string Any arguments for the git command. Must be escaped.
Résultat array(resource,

Property Details

$_branchlist protected_oe property

The list of branches for the repo.
protected array $_branchlist
Résultat array

$_diffTypes protected_oe property

The available diff types.
protected array $_diffTypes
Résultat array

$_driver protected_oe property

The current driver.
protected string $_driver
Résultat string

$_features protected_oe property

Driver features.
protected array $_features
Résultat array

$version public_oe property

The git version
public string $version
Résultat string