Adding upstream version 0.5.0~b0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e1bbced648
commit
c8516ea709
9 changed files with 988 additions and 0 deletions
36
README.md
Normal file
36
README.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# dunk
|
||||
|
||||
Pipe your `git diff` output into `dunk` to make it prettier!
|
||||
|
||||

|
||||
|
||||
> ⚠️ 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue