aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/ForkRemote.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie/ForkRemote.php')
-rw-r--r--src/phorkie/ForkRemote.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/phorkie/ForkRemote.php b/src/phorkie/ForkRemote.php
index 524255a..c9ed748 100644
--- a/src/phorkie/ForkRemote.php
+++ b/src/phorkie/ForkRemote.php
@@ -22,7 +22,15 @@ class ForkRemote
public function parse()
{
- $scheme = parse_url($this->url, PHP_URL_SCHEME);
+ $arUrl = parse_url($this->url);
+ $scheme = $arUrl['scheme'] ?: '';
+ if ($scheme == 'https' && isset($arUrl['host'])
+ && $arUrl['host'] == 'gist.github.com'
+ ) {
+ $scheme = 'git';
+ $this->url = 'git://gist.github.com/'. ltrim($arUrl['path'], '/') . '.git';
+ }
+
switch ($scheme) {
case 'git':
//clearly a git url