goland
打开工程 file/open 打开工程的文件夹就好,不像vs要打开工程文件
设置 file/setting/ 设置字体,设置背景色,快捷键等
编译 silf+f10
下载mod
命令窗口输入 go mod tidy
如果下载失败,拿别人的覆盖自己的C:UsersAdministratorgopkgmod
go module 安装不了golang.org时的处理方式记录
https://yq.aliyun.com/articles/663151
go mod edit -require=golang.org/x/net@v1.11.1
go mod edit -replace=golang.org/x/crypto@v1.11.1=github.com/golang/crypto@latest
go mod edit -replace=golang.org/x/sys@v1.11.1=github.com/golang/sys@v1.2.3
如果发现import有很多的红色,
检查设置
go/gomodule/proxy
https://goproxy.io
vcs自带了git,可以comit,pull,push
go调试
Goland 调试 Go https://www.cnblogs.com/cinlap/p/10064549.html