Go list
Jump to navigation
Jump to search
Internal
Overview
The list
command lists all installed packages. If the "./..." argument is give, the list
displays the local packages, one per line.
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.