LinuxCommandLibrary

gotip

Daily builds of Go from development tree

TLDR

Run Go development version
$ gotip [go-commands]
copy
Install latest development version
$ gotip download
copy
Build specific CL
$ gotip download [CL-number]
copy

SYNOPSIS

gotip [options] command

DESCRIPTION

gotip provides access to daily builds of Go from the development tree. It allows developers to test upcoming Go features and bug fixes before they are released in stable versions.
The tool downloads pre-built binaries from the Go build servers, making it easy to try the latest development version without compiling from source.

PARAMETERS

download [CL]

Download and install Go development version
version
Print version information
-h, --help
Display help and exit

USAGE

Install latest development version:

$ gotip download
copy
Use gotip like regular Go:
$ gotip run main.go
copy
$ gotip test ./...
copy
$ gotip build
copy

CAVEATS

Development versions may be unstable. Not recommended for production use. Requires internet connection to download. Binaries are large downloads.

HISTORY

gotip was created by the Go team to make testing development versions easier, replacing earlier workarounds for accessing pre-release Go versions.

SEE ALSO

go(1), [dl.golang.org](https://dl.golang.org/), [go.dev](https://go.dev/)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard