Interactive terminal interface for using git without memorizing commands.
β¨ Features
π Initialize repository β complete 5-step wizard: configure name/email, choose main branch, create .gitignore, connect remote and make the first commit
π Visual status β see the repository state in organized panels (staged, modified, new)
# Run in dev mode
go run .
# Production build
go build -ldflags="-s -w" -o easy-git .
# Cross-platform build
GOOS=linux GOARCH=amd64 go build -o easy-git-linux .
GOOS=darwin GOARCH=amd64 go build -o easy-git-mac .
GOOS=windows GOARCH=amd64 go build -o easy-git.exe .