$ gf init -h
USAGE
gf init ARGUMENT [OPTION]
ARGUMENT
NAME name for the project. It will create a folder with NAME in current directory.The NAME will also be the
module name for the project.
OPTION
-m, --mono initialize a mono-repo instead a single-repo
-h, --help more information about this command
EXAMPLE
gf init my-project
gf init my-mono-repo -m
8 Comments
朱文永
gf 命令创建的项目,怎么升级框架最新的代码呢
刘羽禅
gf update
然后执行
go get -u github.com/gogf/gf
飞天子
执行:go get -u github.com/gogf/gf返回的版本是1.16.6,提示如下:
go get: added github.com/gogf/gf v1.16.6
jackwu
go get -u -v -x github.com/gogf/gf
beautiful
gf init 不能指定框架的版本? 我看源码init直接下载的就是最新的!
dabuge
建议创建项目的时候,把当前最新适配的 gf 工具也创建一份到当前的项目目录,避免后续工具升级后,新的工具操作项目造成代码不兼容,1.15、1.16在这个问题上吃了不少亏了。不管系统的 gf 工具是哪个版本,都可以使用项目里面保存的 gf 工具来操作这个项目,这样就不会乱了
Mr曹
建议init命令(ps: 刚接触gf,也许本建议已经实现,只是未能找到用法)
1. 支持模块名称如:github.com/xxx/module_name/v3
张全蛋
怎么创建指定版本的项目,gf -v打印的fg版本是2.0的