mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 18:55:25 +02:00
git-difftool: add page (#4127)
This commit is contained in:
parent
4b76ffff45
commit
7a9754b18f
1 changed files with 20 additions and 0 deletions
20
pages/common/git-difftool.md
Normal file
20
pages/common/git-difftool.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# git difftool
|
||||
|
||||
> Show file changes using external diff tools. Accepts the same options and arguments as git diff.
|
||||
> More information: <https://git-scm.com/docs/git-difftool>.
|
||||
|
||||
- List available diff tools:
|
||||
|
||||
`git difftool --tool-help`
|
||||
|
||||
- Set the default diff tool to meld:
|
||||
|
||||
`git config --global diff.tool "{{meld}}"`
|
||||
|
||||
- Use the default diff tool to show staged changes:
|
||||
|
||||
`git difftool --staged`
|
||||
|
||||
- Use a specific tool (opendiff) to show changes since a given commit:
|
||||
|
||||
`git difftool --tool={{opendiff}} {{commit}}`
|
Loading…
Add table
Reference in a new issue