summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTejinder Singh <35347971+torqu3e@users.noreply.github.com>2022-05-05 14:27:52 -0400
committerGitHub <noreply@github.com>2022-05-05 20:27:52 +0200
commit52bab63e188b3dbd680c5e50054398fe61521a2c (patch)
tree94de28b37c2f36ae6cc87ad6e49146e55f6452d6
parent0851bbbb28107c41219168ffce0ba2c3863dde4b (diff)
Add `--relative` to `batdiff` in README.md (#2172)
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 63b57897..cd849f4a 100644
--- a/README.md
+++ b/README.md
@@ -171,7 +171,7 @@ You can combine `bat` with `git diff` to view lines around code changes with pro
highlighting:
```bash
batdiff() {
- git diff --name-only --diff-filter=d | xargs bat --diff
+ git diff --name-only --relative --diff-filter=d | xargs bat --diff
}
```
If you prefer to use this as a separate tool, check out `batdiff` in [`bat-extras`](https://github.com/eth-p/bat-extras).