You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
I'm writing a little CLI tool to switch branches using go-git. I want to use the master version and use the worktree.Checkout(opts) feature, but I have some things I'm not understanding:
why master import paths refer to gopkg.in/src-d/go-git.v4 instead of github.com/src-d/go-git?
See #380, your problem is essentially the same. Clone master into $GOPATH/gopgk.in/src-d/go-git.v4 and it will compile or use a dependency manager to pull sources for gopgk.in/src-d/go-git.v4 from the master branch into vendor.
Hi there,
I'm writing a little CLI tool to switch branches using go-git. I want to use the master version and use the
worktree.Checkout(opts)
feature, but I have some things I'm not understanding:gopkg.in/src-d/go-git.v4
instead ofjackfan.us.kg/src-d/go-git
?./main.go:36: undefined: git.CheckoutOptions
.Note that i
go get
ed both v4 and master versions and have both in my GOPATH.Thanks a lot and congrats for this awesome lib.
The text was updated successfully, but these errors were encountered: