diff options
Diffstat (limited to 'modules/git/repo_pull.go')
-rw-r--r-- | modules/git/repo_pull.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go index a179e52802..add32df908 100644 --- a/modules/git/repo_pull.go +++ b/modules/git/repo_pull.go @@ -84,3 +84,9 @@ func (repo *Repository) GetPatch(basePath, baseBranch, headBranch string) ([]byt return stdout, nil } + +// Merge merges pull request from head repository and branch. +func (repo *Repository) Merge(headRepoPath string, baseBranch, headBranch string) error { + + return nil +} |