https://github.com/harrybrwn/govm
Go version manager
https://github.com/harrybrwn/govm
Last synced: 2 months ago
JSON representation
Go version manager
- Host: GitHub
- URL: https://github.com/harrybrwn/govm
- Owner: harrybrwn
- License: apache-2.0
- Created: 2022-11-09T03:44:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-23T06:18:24.000Z (4 months ago)
- Last Synced: 2025-01-23T07:24:14.192Z (4 months ago)
- Language: Go
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```