1
0
Fork 0
No description
Find a file
2025-05-13 12:47:45 +02:00
debian Adding patch to remove visual clutter by avoiding last-line branding in output. 2025-05-13 12:47:45 +02:00
dunk Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00
.gitignore Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00
LICENSE Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00
pyproject.toml Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00
README.md Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00
uv.lock Adding upstream version 0.5.0~b0. 2025-05-08 16:25:10 +02:00

dunk

Pipe your git diff output into dunk to make it prettier!

image

⚠️ This project is very early stages - expect crashes, bugs, and confusing output!

Quick Start

I recommend you install using pipx, which will allow you to use dunk from anywhere.

pipx install dunk

Basic Usage

Pipe the output of git diff into dunk:

git diff | dunk

or add it to git as an alias:

git config --global alias.dunk '!git diff | dunk'

Paging

You can pipe output from dunk into a pager such as less:

git diff | dunk | less -R