Skip to content

Commit

Permalink
No Wrapper needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stark committed Oct 13, 2023
1 parent 5bba185 commit 1192124
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Services/Git/GitonomyClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace fortrabbit\Copy\Services\Git;

use fortrabbit\Copy\Exceptions\GitException;
use fortrabbit\Copy\Services\Git\RepositoryWrapper;
use Gitonomy\Git\Admin;
use Gitonomy\Git\Exception\ProcessException;
use Gitonomy\Git\Exception\ReferenceNotFoundException;
Expand Down Expand Up @@ -152,7 +151,7 @@ public function getDirectory(): string
public function init()
{
Admin::init($this->directory, false);
$this->repository = new \fortrabbit\Copy\Services\Git\RepositoryWrapper($this->directory);
$this->repository = new Repository($this->directory);
}

public function log(...$argsOrOptions): string
Expand Down

0 comments on commit 1192124

Please sign in to comment.