X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/5d065586f4c16c0ec6510dba97b0d5facb859d75..52de444faa10f37c4174e9fe2c75e77484342549:/src/phorkie/Forker.php diff --git a/src/phorkie/Forker.php b/src/phorkie/Forker.php index 3425a72..f4901ed 100644 --- a/src/phorkie/Forker.php +++ b/src/phorkie/Forker.php @@ -10,12 +10,12 @@ class Forker return $new; } - public function forkRemote($url) + public function forkRemote($cloneUrl, $originalUrl) { - $new = $this->fork($url); + $new = $this->fork($cloneUrl); file_put_contents( $new->gitDir . '/description', - 'Fork of ' . $url + 'Fork of ' . $originalUrl ); return $new; }