diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-25 18:00:41 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-25 18:00:41 +0200 |
commit | 49c90eab26875cbf3094d9a546ad29b426e174a1 (patch) | |
tree | e5637f207396ddbb2858944b5c471701d751fe16 | |
parent | cbdba92704d8d918e8c7725aa0520b722b379816 (diff) | |
download | git-bug-49c90eab26875cbf3094d9a546ad29b426e174a1.tar.gz |
git: fix fetch not working
-rw-r--r-- | repository/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository/git.go b/repository/git.go index 648f56c1..c6bc5009 100644 --- a/repository/git.go +++ b/repository/git.go @@ -102,7 +102,7 @@ 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+"\"") + err := repo.runGitCommandInline("fetch", remote, refSpec) if err != nil { return fmt.Errorf("failed to fetch from the remote '%s': %v", remote, err) |