commit) { return; } $this->expandCommitName(); } public function getBranch() { if ($this->branch) { return $this->branch; } if ($this->repository) { return $this->repository->getDefaultBranch(); } throw new Exception("Unable to determine branch!"); } public function getCommit() { if ($this->commit) { return $this->commit; } return $this->getResolvableBranchName($this->getBranch()); } protected function getResolvableBranchName($branch) { if ($this->repository->isWorkingCopyBare()) { return $branch; } else { $remote = DiffusionBranchInformation::DEFAULT_GIT_REMOTE; return $remote.'/'.$branch; } } }