1、新建本地项目,创建 module
使用 github 标准格式:github.com/用户名/仓库名
go mod init github.com/xiaozhu/hello // 指定名称,创建 module
2、安装依赖,编写代码
go tide // 安装缺少的依赖,清理无用的依赖
go get // 安装缺少的依赖
go get "xxx@v1.0.0" // 指定版本安装依赖
3、新建 github 仓库
hello
4、发布代码到仓库
git remote add origin github.com/xiaozhu/hello
git push -u origin master
git tag v1.0.0
git push
5、使用创建的依赖
import "github.com/xiaozhu/hello"