diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-01 21:57:12 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-01 21:57:12 +0200 |
commit | e5a6a71b78b0d8c5ef0d52c3eeb279d5738b9cf7 (patch) | |
tree | b61cfb5f121a6988aa811566c8cc04e4834c87b8 /repository/git.go | |
parent | 15f282421941b90e1f62912cf68b7556a8ce7b33 (diff) | |
download | git-bug-e5a6a71b78b0d8c5ef0d52c3eeb279d5738b9cf7.tar.gz |
graphql: implement the missing mutations
Diffstat (limited to 'repository/git.go')
-rw-r--r-- | repository/git.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repository/git.go b/repository/git.go index 3470958b..aa0e72b7 100644 --- a/repository/git.go +++ b/repository/git.go @@ -4,11 +4,12 @@ package repository import ( "bytes" "fmt" - "github.com/MichaelMure/git-bug/util" "io" "os" "os/exec" "strings" + + "github.com/MichaelMure/git-bug/util" ) // GitRepo represents an instance of a (local) git repository. |