A tiny Go program that shows git diffs in the current directory and all git repositories in subdirectories.
# Build
go build -o diff-server .
# Run (default port 3844, current directory)
./diff-server
# Run on custom port
./diff-server -p 9000
# Scan a different directory
./diff-server -C /path/to/workspaceThen open http://localhost:3844 (or your custom port) in a browser to view the diffs.
