Add git diff example to Integration docs

Part of https://github.com/sharkdp/bat/issues/448

Thanks to https://github.com/sharkdp/bat/pull/940
This commit is contained in:
Jesse Vermeulen 2020-10-27 17:40:40 +01:00 committed by David Peter
parent cc6cf48256
commit 88eba56607
1 changed files with 7 additions and 1 deletions

View File

@ -131,7 +131,13 @@ highlighting:
git show v0.6.0:src/main.rs | bat -l rs
```
Note that syntax highlighting within diffs is currently not supported. If you are looking for this, check out [`delta`](https://github.com/dandavison/delta).
#### `git diff`
You can combine `bat` with `git diff` to view lines around code changes with proper syntax
highlighting:
```bash
git diff --name-only --diff-filter=d | xargs bat --diff
```
#### `xclip`