diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-12 21:09:30 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-12 21:09:30 +0200 |
commit | e2f4b027c946831c3f4f119d87a80513c7cf8fdc (patch) | |
tree | b2ec57c89c49062ab2e8adeacb2646d2f152db80 /repository/git.go | |
parent | 721ed3248e8bf167a89df14d9fc2bf5b0fe45753 (diff) | |
download | git-bug-e2f4b027c946831c3f4f119d87a80513c7cf8fdc.tar.gz |
termui: implement push/pull
Diffstat (limited to 'repository/git.go')
-rw-r--r-- | repository/git.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/repository/git.go b/repository/git.go index 5748d52a..dc071fdc 100644 --- a/repository/git.go +++ b/repository/git.go @@ -151,24 +151,24 @@ func (repo *GitRepo) GetCoreEditor() (string, error) { } // FetchRefs fetch git refs from a remote -func (repo *GitRepo) FetchRefs(remote, refSpec string) error { - err := repo.runGitCommandInline("fetch", remote, refSpec) +func (repo *GitRepo) FetchRefs(remote, refSpec string) (string, error) { + stdout, err := repo.runGitCommand("fetch", remote, refSpec) if err != nil { - return fmt.Errorf("failed to fetch from the remote '%s': %v", remote, err) + return stdout, fmt.Errorf("failed to fetch from the remote '%s': %v", remote, err) } - return err + return stdout, err } // PushRefs push git refs to a remote -func (repo *GitRepo) PushRefs(remote string, refSpec string) error { - err := repo.runGitCommandInline("push", remote, refSpec) +func (repo *GitRepo) PushRefs(remote string, refSpec string) (string, error) { + stdout, stderr, err := repo.runGitCommandRaw(nil, "push", remote, refSpec) if err != nil { - return fmt.Errorf("failed to push to the remote '%s': %v", remote, err) + return stdout + stderr, fmt.Errorf("failed to push to the remote '%s': %v", remote, err) } - return nil + return stdout + stderr, nil } // StoreData will store arbitrary data and return the corresponding hash |