From ae6cce277081f0ad2feb886483ec3dd43573e0e6 Mon Sep 17 00:00:00 2001 From: tso Date: Wed, 9 Aug 2017 10:45:11 -0400 Subject: [PATCH] Temporarily resolve dependency issue re: #4 - Forked https://github.com/shibukawa/git4go to https://github.com/generaltso/git4go - git reset --hard HEAD~1 && git push -f (revert the changes that broke the package) - `import "github.com/generaltso/git4go"` instead of shibukawa/git4go Note: I don't intend to maintain a separate fork indefinitely... --- cmd/l/git.go | 2 +- cmd/l/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/l/git.go b/cmd/l/git.go index 1e3948a..c24ee34 100644 --- a/cmd/l/git.go +++ b/cmd/l/git.go @@ -4,8 +4,8 @@ import ( "log" "path/filepath" + "github.com/generaltso/git4go" "github.com/generaltso/linguist" - "github.com/shibukawa/git4go" ) func processTree(repo *git4go.Repository, odb *git4go.Odb, tree_id *git4go.Oid, parent []string) { diff --git a/cmd/l/main.go b/cmd/l/main.go index 94dcbae..fc25af3 100644 --- a/cmd/l/main.go +++ b/cmd/l/main.go @@ -9,8 +9,8 @@ import ( "os" "sort" + "github.com/generaltso/git4go" "github.com/generaltso/linguist" - "github.com/shibukawa/git4go" ) func checkErr(err error) {