/**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle(GitRepoService $git)
 {
     $git->pullRepo();
 }
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle(GitRepoService $git)
 {
     $git->cloneRepo();
 }
 /**
  * Return an array [path => title] of the enabled docs
  * @return array
  */
 public function getDocsEnabledVersions()
 {
     return $this->git->enabledRepos();
 }