Commit 2ec237fdf7ccf7f04acd055f62ce2c8d4b0f29ed
Fix viewing individual commits
`git log ref..ref` won't print anything.
Author: xaizek
Author date (UTC): 2020-07-31 16:39
Committer name: xaizek
Committer date (UTC): 2020-07-31 16:39
Parent(s): c2bf639e3f0dd318b07db6810656e268a0bcb094
Signing key: 99DC5E4DB05F6BE2
Tree: 54be8a9ba29e1bc4a3aa8bdc9040f937497bbc9b
File inc/git.inc.php changed (mode: 100644) (index bb19231..35b6d7e) |
... |
... |
function rg_git_from_to($from, $to) |
239 |
239 |
} else if (empty($to)) { |
} else if (empty($to)) { |
240 |
240 |
rg_log('to empty'); |
rg_log('to empty'); |
241 |
241 |
$from_to = $from; |
$from_to = $from; |
|
242 |
|
} else if ($from === $to) { |
|
243 |
|
$from_to = $from; |
242 |
244 |
} else { |
} else { |
243 |
245 |
$from_to = $from . '..' . $to; |
$from_to = $from . '..' . $to; |
244 |
246 |
} |
} |