go mod 常用命令

1. download

# download modules to local cache(下載依賴包)
go mod download

2. edit

# edit go.mod from tools or scripts(編輯go.mod)
go mod edit

3. graph

# print module requirement graph (打印模塊依賴圖)
go mod graph

4. init

# initialize new module in current directory(在當前目錄初始化mod)
go mod init

5. tidy

# add missing and remove unused modules(拉取缺少的模塊,移除不用的模塊)
go mod tidy

6. vender

# make vendored copy of dependencies(將依賴複製到vendor下)
go mod vendor

7. verify

# vverify dependencies have expected content (驗證依賴是否正確)
go mod verify

8. why

# explain why packages or modules are needed(解釋爲什麼需要依賴)
go mod why

 

原文:執行 go help mod

Go mod provides access to operations on modules.

Note that support for modules is built into all the go commands,
not just 'go mod'. For example, day-to-day adding, removing, upgrading,
and downgrading of dependencies should be done using 'go get'.
See 'go help modules' for an overview of module functionality.

Usage:

        go mod <command> [arguments]

The commands are:

        download    download modules to local cache
        edit        edit go.mod from tools or scripts
        graph       print module requirement graph
        init        initialize new module in current directory
        tidy        add missing and remove unused modules
        vendor      make vendored copy of dependencies
        verify      verify dependencies have expected content
        why         explain why packages or modules are needed

Use "go help mod <command>" for more information about a command.


 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章