Go list: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
The <code>list</code> command lists all installed packages. | The <code>list</code> command lists all installed packages. If the "./..." argument is give, the <code>list</code> displays the local packages, one per line. | ||
The command can also be used to discover new versions of the dependencies. | The command can also be used to discover new versions of the dependencies. | ||
Line 19: | Line 19: | ||
The shared flags described here apply: {{Internal|Go_Tool_Shared_Flags#Overview|Shared Flags}} | The shared flags described here apply: {{Internal|Go_Tool_Shared_Flags#Overview|Shared Flags}} | ||
=Options= | =Options= | ||
==<tt>-m</tt>== | ==<tt>-m</tt>== |
Latest revision as of 23:13, 12 March 2024
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.