Skip to content

Commit 12a4ca9

Browse files
committed
Added options to cloneTo to also allow passting of git cli arguments
1 parent 5f62dd2 commit 12a4ca9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/Gitonomy/Git/Admin.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,13 @@ public static function isValidRepositoryAndBranch($url, $branchName, array $opti
9898
* @param string $url url of repository to clone
9999
* @param bool $bare indicates if repository should be bare or have a working copy
100100
* @param array $options options for Repository creation
101+
* @param array $args arguments to be added to the command-line
101102
*
102103
* @return Repository
103104
*/
104-
public static function cloneTo($path, $url, $bare = true, array $options = [])
105+
public static function cloneTo($path, $url, $bare = true, array $options = [], array $args = [])
105106
{
106-
$args = $bare ? ['--bare'] : [];
107+
$args = array_merge($args,$bare ? ['--bare'] : []);
107108

108109
return static::cloneRepository($path, $url, $args, $options);
109110
}

src/Gitonomy/Git/Repository.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -608,12 +608,14 @@ public function getLogger()
608608
*
609609
* @param string $path path to the new repository in which current repository will be cloned
610610
* @param bool $bare flag indicating if repository is bare or has a working-copy
611+
* @param array $options options for Repository creation
612+
* @param array $args arguments to be added to the command-line
611613
*
612614
* @return Repository the newly created repository
613615
*/
614-
public function cloneTo($path, $bare = true, array $options = [])
616+
public function cloneTo($path, $bare = true, array $options = [], array $args = [])
615617
{
616-
return Admin::cloneTo($path, $this->gitDir, $bare, $options);
618+
return Admin::cloneTo($path, $this->gitDir, $bare, $options, $args);
617619
}
618620

619621
/**

0 commit comments

Comments
 (0)