Create diff

This commit is contained in:
Nicco 2023-02-20 13:26:43 +01:00 committed by GitHub
parent 67aca792cf
commit 39909b2987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
docs/cli/diff Normal file
View File

@ -0,0 +1,12 @@
---
tags:
- diff
---
# See difference between files / directories
```bash
diff -ry dir1 dir2
```
The `-r` flag is to recurse into folders. The `-y` flag creates a side by side view, generally easier to read. `-q` Would only show what filenames changed.