aboutsummaryrefslogtreecommitdiffstats
path: root/bug/bug_actions.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-05 15:23:51 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-05 15:26:36 +0200
commit90fb85e067326b0f0a121e781f87df762f385592 (patch)
tree63849f72d7cd9b41fe47eb5721abf1b20fc98222 /bug/bug_actions.go
parent597b0ea0d2dd9cbb40d69a23d8a4c9020e43de6a (diff)
downloadgit-bug-90fb85e067326b0f0a121e781f87df762f385592.tar.gz
bug: store the referenced media in their own git tree under /media, as per the doc I wrote myself
Diffstat (limited to 'bug/bug_actions.go')
-rw-r--r--bug/bug_actions.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/bug/bug_actions.go b/bug/bug_actions.go
index 85123e1c..b2bc8b7d 100644
--- a/bug/bug_actions.go
+++ b/bug/bug_actions.go
@@ -2,9 +2,10 @@ package bug
import (
"fmt"
- "github.com/MichaelMure/git-bug/repository"
"io"
"strings"
+
+ "github.com/MichaelMure/git-bug/repository"
)
const MsgMergeNew = "new"
@@ -139,5 +140,3 @@ func MergeAll(repo repository.Repo, remote string) <-chan MergeResult {
return out
}
-
-