20

分叉了一个 go模块,并想在我的项目中使用通过v1.12. 我的代码不在我的GOPATH.

我的项目go.mod

module github.com/me/myproj

go 1.12

require (   
    go.larrymyers.com/protoc-gen-twirp_typescript v0.0.0-20190605194555-ffbfe407b60f
)

replace go.larrymyers.com/protoc-gen-twirp_typescript => github.com/rynop/protoc-gen-twirp_typescript master

protoc-gen-twirp_typescript 是一个工具protoc,所以这是我的tools.go

// +build tools

package tools

import (
    // protocol buffer compiler plugins
    _ "github.com/golang/protobuf/protoc-gen-go"
    _ "github.com/mwitkow/go-proto-validators/protoc-gen-govalidators"
    _ "github.com/twitchtv/twirp/protoc-gen-twirp"
    _ "github.com/rynop/protoc-gen-twirp_typescript"
)

当我运行go mod tidy下载我的依赖项时,我收到此错误:

go: finding github.com/rynop/protoc-gen-twirp_typescript master
go: finding github.com/rynop/protoc-gen-twirp_typescript latest
go: github.com/rynop/protoc-gen-twirp_typescript@v0.0.0-20190618203538-a346b5d9c8fb: parsing go.mod: unexpected module path "go.larrymyers.com/protoc-gen-twirp_typescript"

为什么我会收到此错误?我认为替换指令go.mod允许分叉模块 go.mod保持不变。

4

2 回答 2

16

您有以下内容replace

replace go.larrymyers.com/protoc-gen-twirp_typescript => github.com/rynop/protoc-gen-twirp_typescript master

如果我遵循的话,实际上是replace originalname => forkname

我认为问题在于您使用 fork 的名称而不是原始名称进行导入:

import (
    // protocol buffer compiler plugins
    _ "github.com/golang/protobuf/protoc-gen-go"
    _ "github.com/mwitkow/go-proto-validators/protoc-gen-govalidators"
    _ "github.com/twitchtv/twirp/protoc-gen-twirp"
    _ "github.com/rynop/protoc-gen-twirp_typescript"   <<<< PROBLEM, using fork name
)

您看到的错误消息似乎是go抱怨的命令。

我怀疑如果您在导入语句中使用原始名称,它会起作用:

import (
    ...
    _ "go.larrymyers.com/protoc-gen-twirp_typescript"   <<<< original name
)

您还应该运行go list -m all以查看最终选定的版本,包括它显示任何replaceexclude指令的结果。

于 2019-08-01T21:12:17.337 回答
-9

如何使用分叉模块 [?]

你不能。Github fork 会生成一个不相关的包,很可能甚至无法构建。

不要分叉,克隆。然后推送到不同的遥控器(可以是分叉)。

于 2019-06-19T19:11:09.220 回答