Don't Do Something Stupid! A tool the observe a git repository.
Find a file
heming 9ab3359765
All checks were successful
CI Pipeline / health (push) Successful in 35s
CI Pipeline / build (push) Successful in 2m12s
Update Roboter summary
2025-06-20 21:20:49 +02:00
.forgejo/workflows Build and test in parallel 2025-06-20 20:33:36 +02:00
cmd/ddss Bump version to 0.1.8 2025-06-20 20:32:21 +02:00
internal Fix editor shortcut to respect collapsed tree state 2025-06-20 21:11:10 +02:00
pkg/types Add health check script and format code 2025-06-20 02:13:37 +02:00
.gitignore Add build/ directory to .gitignore 2025-06-20 20:47:41 +02:00
CLAUDE.md Update Roboter summary 2025-06-20 21:20:49 +02:00
go.mod Implement modern tabbed GUI with interactive navigation 2025-06-19 23:26:40 +02:00
go.sum Implement modern tabbed GUI with interactive navigation 2025-06-19 23:26:40 +02:00
Makefile Fix shell compatibility issues in Makefile release target 2025-06-20 20:32:09 +02:00
README.md Add comprehensive installation instructions to README 2025-06-20 20:45:09 +02:00

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

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