diff options
author | Mark Bartel <github@spottybenny.ca> | 2018-07-07 23:20:05 -0400 |
---|---|---|
committer | Mark Bartel <github@spottybenny.ca> | 2018-07-07 23:20:05 -0400 |
commit | f0c4318e7b8d5cbf91723c71a4ba20d1bd0cfaf5 (patch) | |
tree | 5009f2ccb16aecae80bf7939bec50752d6170f73 /worktree_commit.go | |
parent | 7ff71b5a66eea98983c610d33523041a5a829e2f (diff) | |
download | go-git-f0c4318e7b8d5cbf91723c71a4ba20d1bd0cfaf5.tar.gz |
worktree: address PR comments: sort imports appropriately
Signed-off-by: Mark Bartel <github@spottybenny.ca>
Diffstat (limited to 'worktree_commit.go')
-rw-r--r-- | worktree_commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worktree_commit.go b/worktree_commit.go index ee5cd82..f0e0b42 100644 --- a/worktree_commit.go +++ b/worktree_commit.go @@ -2,6 +2,7 @@ package git import ( "path" + "sort" "strings" "gopkg.in/src-d/go-git.v4/plumbing" @@ -11,7 +12,6 @@ import ( "gopkg.in/src-d/go-git.v4/storage" "gopkg.in/src-d/go-billy.v4" - "sort" ) // Commit stores the current contents of the index in a new commit along with |