File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package git
2
2
3
3
import (
4
4
"path"
5
+ "sort"
5
6
"strings"
6
7
7
8
"gopkg.in/src-d/go-git.v4/plumbing"
@@ -11,7 +12,6 @@ import (
11
12
"gopkg.in/src-d/go-git.v4/storage"
12
13
13
14
"gopkg.in/src-d/go-billy.v4"
14
- "sort"
15
15
)
16
16
17
17
// Commit stores the current contents of the index in a new commit along with
Original file line number Diff line number Diff line change 1
1
package git
2
2
3
3
import (
4
+ "bytes"
5
+ "io/ioutil"
6
+ "os"
7
+ "os/exec"
4
8
"time"
5
9
6
10
"gopkg.in/src-d/go-git.v4/plumbing"
7
11
"gopkg.in/src-d/go-git.v4/plumbing/object"
8
12
"gopkg.in/src-d/go-git.v4/plumbing/storer"
9
13
"gopkg.in/src-d/go-git.v4/storage/memory"
14
+ "gopkg.in/src-d/go-git.v4/storage/filesystem"
10
15
11
- "bytes"
12
16
. "gopkg.in/check.v1"
13
17
"gopkg.in/src-d/go-billy.v4/memfs"
14
18
"gopkg.in/src-d/go-billy.v4/osfs"
15
19
"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"
20
20
)
21
21
22
22
func (s * WorktreeSuite ) TestCommitInvalidOptions (c * C ) {
You can’t perform that action at this time.
0 commit comments