导航

go mod 使用最新版本包

Posted on 2021-12-22 07:40  蝈蝈俊  阅读(2908)  评论(0编辑  收藏  举报
# 拉取最新的版本(优先择取 tag)
go get golang.org/x/text@latest

# 拉取 master 分支的最新 commit
go get golang.org/x/text@master

更新了mod依赖版本后, vscode的跳转功能并不能立即生效,需要重启下才能生效。