1 Star 0 Fork 0

Vincent/Golang_Study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
go mod命令.txt 932 Bytes
一键复制 编辑 原始数据 按行查看 历史
VINCENT 提交于 2022-11-10 19:36 . Golang学习day3补充
go env 检查 GO MODULE是否开启
go mod init demo(模块名)
go get 获取下载依赖
go mod tidy 自动扫描项目中引用的依赖并自动下载
go test demo
go test demo -v 详细打印测试过程
go test -benchmem -run=^$ -bench ^BenchmarkAdd$(函数名称) demo 基准测试调用内存
go build 打包文件 ./hello 执行文件
go build -o myhello.exe hello.go
go mod中
require()所依赖的外部包
exclude排除某个版本
replace替换某个包
go get -u github.com/gin-gonic/gin gin框架依赖
go get github.com/pilu/fresh 热加载依赖
go get -u github.com/jinzhu/gorm gorm框架依赖
连接数据库
import _ "github.com/jinzhu/gorm/dialects/mysql"
import _ "github.com/jinzhu/gorm/dialects/postgres"
import _ "github.com/jinzhu/gorm/dialects/sqlite"
import _ "github.com/jinzhu/gorm/dialects/mssql"
mysql -P 3308 -u root -p 数据库改端口3308
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/Vincentstudy/Golang_Study.git
git@gitee.com:Vincentstudy/Golang_Study.git
Vincentstudy
Golang_Study
Golang_Study
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385