Convert github.com/golang/go/wiki links to go.dev/wiki

Go wiki has moved https://github.com/golang/go/issues/61940. Wiki at
github.com/golang/go/wiki does not automatically move to go.dev/wiki
but says that wiki has moved.

I used the following shell one-liner to convert all links:

    $ find . -type f -print0 | xargs -0 sed -i 's,github.com/golang/go/wiki,go.dev/wiki,g'

To verify if they return 200:

    $ ag -a --nofilename -o 'https?.+wiki/.+?\b' | sort | uniq | xargs curl -sI
    HTTP/2 200
    (...)
    HTTP/2 200
This commit is contained in:
Arkadiusz Drabczyk
2024-06-23 21:36:41 +02:00
parent ae58eb192d
commit 13f3654146
17 changed files with 47 additions and 47 deletions

View File

@@ -33,7 +33,7 @@ Go 1.14 `Go Modules`已经可以用于生产环境。没有什么特殊原因的
* <https://golang.org/doc/effective_go.html#names>
* <https://blog.golang.org/package-names>
* <https://github.com/golang/go/wiki/CodeReviewComments>
* <https://go.dev/wiki/CodeReviewComments>
* Style guideline for Go packages (rakyll/JBD)
@@ -78,7 +78,7 @@ Go 1.14 `Go Modules`已经可以用于生产环境。没有什么特殊原因的
### `/vendor`
应用程序的依赖关系(通过手动或者使用喜欢的依赖管理工具,如新增的内置[Go Modules](https://github.com/golang/go/wiki/Modules)特性)。执行`go mod vendor`命令将会在项目中创建`/vendor`目录注意如果使用的不是Go 1.14版本,在执行`go build`进行编译时,需要添加`-mod=vendor`命令行选项,因为它不是默认选项。
应用程序的依赖关系(通过手动或者使用喜欢的依赖管理工具,如新增的内置[Go Modules](https://go.dev/wiki/Modules)特性)。执行`go mod vendor`命令将会在项目中创建`/vendor`目录注意如果使用的不是Go 1.14版本,在执行`go build`进行编译时,需要添加`-mod=vendor`命令行选项,因为它不是默认选项。
构建库文件时,不要提交应用程序依赖项。