aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/vcs.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/vcs/vcs.go')
-rw-r--r--pkg/vcs/vcs.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/vcs/vcs.go b/pkg/vcs/vcs.go
index 0730ba721..23a302cbd 100644
--- a/pkg/vcs/vcs.go
+++ b/pkg/vcs/vcs.go
@@ -72,6 +72,9 @@ type Repo interface {
// CommitExists check for the commit presence in local checkout.
CommitExists(commit string) (bool, error)
+
+ // PushCommit is used to store commit in remote repo.
+ PushCommit(repo, commit string) error
}
// Bisecter may be optionally implemented by Repo.