1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 07:35:30 +02:00

Revert "git-diff: remove 9th example"

This reverts commit d31091d937.
This commit is contained in:
zdroid 2020-07-17 19:59:43 +02:00
parent d31091d937
commit 700b238b97

View file

@ -27,6 +27,10 @@
`git diff --summary {{commit}}`
- Create a patch file:
`git diff > {{target_file}}.patch`
- Compare a single file between two branches or commits:
`git diff {{branch_1}}..{{branch_2}} [--] {{path/to/file}}`