diff options
Diffstat (limited to 'repository')
-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. |