Go list: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Go_Tool|go tool]] | * [[Go_Tool#list|go tool]] | ||
* [[Go_test_Command#Package_List_Mode|<tt>go test</tt> | Package List Mode]] | * [[Go_test_Command#Package_List_Mode|<tt>go test</tt> | Package List Mode]] | ||
Revision as of 21:51, 7 March 2024
Internal
Overview
The list
command lists all installed packages.
The command can also be used to discover new versions of the dependencies.
This command list all of the modules that are dependencies of the current module, along with the latest version available for each:
go list -m -u all
To list the latest version available for a specific module:
go list -m -u example.com/somemodule
The shared flags described here apply:
Options
-m
The -m flag causes list to list modules instead of packages.
-u
Add information about available upgrades.