Skip to content

Commit

Permalink
implement adding git remote
Browse files Browse the repository at this point in the history
  • Loading branch information
pheeque1 committed Apr 4, 2023
1 parent 937242e commit 3023a1d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Services/Git/GitonomyClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public function checkout(string $branch)

public function addRemote(string $name, ?string $url)
{
$this->repository->run(GitCommand::REMOTE, ['add', $name, $url]);
}

public function setDirectory(string $directory)
Expand Down

0 comments on commit 3023a1d

Please sign in to comment.