File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package git
22
33import (
44 "path"
5+ "sort"
56 "strings"
67
78 "gopkg.in/src-d/go-git.v4/plumbing"
@@ -11,7 +12,6 @@ import (
1112 "gopkg.in/src-d/go-git.v4/storage"
1213
1314 "gopkg.in/src-d/go-billy.v4"
14- "sort"
1515)
1616
1717// Commit stores the current contents of the index in a new commit along with
Original file line number Diff line number Diff line change 11package git
22
33import (
4+ "bytes"
5+ "io/ioutil"
6+ "os"
7+ "os/exec"
48 "time"
59
610 "gopkg.in/src-d/go-git.v4/plumbing"
711 "gopkg.in/src-d/go-git.v4/plumbing/object"
812 "gopkg.in/src-d/go-git.v4/plumbing/storer"
913 "gopkg.in/src-d/go-git.v4/storage/memory"
14+ "gopkg.in/src-d/go-git.v4/storage/filesystem"
1015
11- "bytes"
1216 . "gopkg.in/check.v1"
1317 "gopkg.in/src-d/go-billy.v4/memfs"
1418 "gopkg.in/src-d/go-billy.v4/osfs"
1519 "gopkg.in/src-d/go-billy.v4/util"
16- "gopkg.in/src-d/go-git.v4/storage/filesystem"
17- "io/ioutil"
18- "os"
19- "os/exec"
2020)
2121
2222func (s * WorktreeSuite ) TestCommitInvalidOptions (c * C ) {
You can’t perform that action at this time.
0 commit comments