# Packages
No description provided by the author
# README
README
A simple tool to interactively switch git branches.
Usage
Installation
go install github.com/yusukemorita/git-switch-interactive@latest
or build locally
go build -o git-switch-interactive cmd/main.go; mv ./git-switch-interactive ~/go/bin/
Releasing a new version
git tag v0.2.0
git push origin v0.1.2
Thanks
- Writing an interactive CLI menu in Golang was a huge help, thanks @Nexidian !