Hi,
I believe you have a typo at RevParseCommandBuilder.php file at line 221 (abbrevRef method).
$this->processBuilder->add('--abbref-ref' . ($abbrev ? '=' . $abbrev : ''));
Should be:
$this->processBuilder->add('--abbrev-ref' . ($abbrev ? '=' . $abbrev : ''));
Cheers