An open API service indexing awesome lists of open source software.

https://github.com/harrybrwn/govm

Go version manager
https://github.com/harrybrwn/govm

Last synced: 2 months ago
JSON representation

Go version manager

Awesome Lists containing this project

README

        

# govm

Go version manager.

## Install

```bash
go install github.com/harrybrwn/govm
```

## Usage

Download a version of go.
```bash
govm download 1.19.3
```

List all downloaded versions of go.
```bash
govm ls
```

Manually select a version.
```bash
gvm use 1.19.3
```

Select a version using a config file.
```bash
echo '1.18.5' > .govm
govm use
```