Don't Do Something Stupid! A tool the observe a git repository.
| .forgejo/workflows | ||
| cmd/ddss | ||
| internal | ||
| pkg/types | ||
| .gitignore | ||
| CLAUDE.md | ||
| go.mod | ||
| go.sum | ||
| Makefile | ||
| README.md | ||
Don't Do Stupid Shit
A simple tool to observe what is happening in your code.
Real-time Git repository status monitoring with an interactive terminal interface.
Installation
Option 1: Go Install (Recommended)
If you have Go installed:
go install src.heming.dev/heming/ddss/cmd/ddss@latest
Option 2: Download Latest Release
Download and install the latest release:
curl -L "https://src.heming.dev/heming/ddss/releases/latest/download/ddss-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')" -o ddss
chmod +x ddss
sudo install ddss /usr/local/bin/ddss
rm ddss
Option 3: Build from Source
Clone and build manually:
git clone https://src.heming.dev/heming/ddss.git
cd ddss
make build
sudo install build/ddss /usr/local/bin/ddss
Or using Go directly:
git clone https://src.heming.dev/heming/ddss.git
cd ddss
go build -o ddss ./cmd/ddss
sudo install ddss /usr/local/bin/ddss
Usage
Navigate to any Git repository and run:
ddss
For more options:
ddss --help