Skip to content

Commit

Permalink
Temporarily resolve dependency issue re: #4
Browse files Browse the repository at this point in the history
 - 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...
  • Loading branch information
dayvonjersen committed Aug 9, 2017
1 parent 249f856 commit ae6cce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/l/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/l/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"os"
"sort"

"github.com/generaltso/git4go"
"github.com/generaltso/linguist"
"github.com/shibukawa/git4go"
)

func checkErr(err error) {
Expand Down

0 comments on commit ae6cce2

Please sign in to comment.