diff options
Diffstat (limited to '_examples/ls/main.go')
-rw-r--r-- | _examples/ls/main.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/_examples/ls/main.go b/_examples/ls/main.go index bb686f1..95a0c60 100644 --- a/_examples/ls/main.go +++ b/_examples/ls/main.go @@ -8,17 +8,17 @@ import ( "strings" "github.com/emirpasic/gods/trees/binaryheap" - "gopkg.in/src-d/go-git.v4" - . "gopkg.in/src-d/go-git.v4/_examples" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/cache" - commitgraph_fmt "gopkg.in/src-d/go-git.v4/plumbing/format/commitgraph" - "gopkg.in/src-d/go-git.v4/plumbing/object" - "gopkg.in/src-d/go-git.v4/plumbing/object/commitgraph" - "gopkg.in/src-d/go-git.v4/storage/filesystem" - - "gopkg.in/src-d/go-billy.v4" - "gopkg.in/src-d/go-billy.v4/osfs" + "github.com/go-git/go-git/v5" + . "github.com/go-git/go-git/v5/_examples" + "github.com/go-git/go-git/v5/plumbing" + "github.com/go-git/go-git/v5/plumbing/cache" + commitgraph_fmt "github.com/go-git/go-git/v5/plumbing/format/commitgraph" + "github.com/go-git/go-git/v5/plumbing/object" + "github.com/go-git/go-git/v5/plumbing/object/commitgraph" + "github.com/go-git/go-git/v5/storage/filesystem" + + "github.com/go-git/go-billy/v5" + "github.com/go-git/go-billy/v5/osfs" ) // Example how to resolve a revision into its commit counterpart |