mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 15:48:32 +00:00
Update cheatsheets
This commit is contained in:
33
git-mergetool
Normal file
33
git-mergetool
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# git mergetool
|
||||
|
||||
> Run merge conflict resolution tools to resolve merge conflicts.
|
||||
> More information: <https://git-scm.com/docs/git-mergetool>.
|
||||
|
||||
- Launch the default merge tool to resolve conflicts:
|
||||
|
||||
`git mergetool`
|
||||
|
||||
- List valid merge tools:
|
||||
|
||||
`git mergetool --tool-help`
|
||||
|
||||
- Launch the merge tool identified by a name:
|
||||
|
||||
`git mergetool --tool {{tool_name}}`
|
||||
|
||||
- Don't prompt before each invocation of the merge tool:
|
||||
|
||||
`git mergetool --no-prompt`
|
||||
|
||||
- Explicitly use the GUI merge tool (see the `merge.guitool` configuration variable):
|
||||
|
||||
`git mergetool --gui`
|
||||
|
||||
- Explicitly use the regular merge tool (see the `merge.tool` configuration variable):
|
||||
|
||||
`git mergetool --no-gui`
|
||||
Reference in New Issue
Block a user