mirror of
https://github.com/git/git.git
synced 2026-06-09 15:37:49 +02:00
Merge branch 'ah/mergetols-vscode'
"git mergetool" learned to use VSCode as a merge backend. * ah/mergetols-vscode: mergetools: vscode: new tool
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
diff_cmd () {
|
||||
"$merge_tool_path" --wait --diff "$LOCAL" "$REMOTE"
|
||||
}
|
||||
|
||||
diff_cmd_help () {
|
||||
echo "Use Visual Studio Code (requires a graphical session)"
|
||||
}
|
||||
|
||||
merge_cmd () {
|
||||
"$merge_tool_path" --wait --merge "$REMOTE" "$LOCAL" "$BASE" "$MERGED"
|
||||
}
|
||||
|
||||
merge_cmd_help () {
|
||||
echo "Use Visual Studio Code (requires a graphical session)"
|
||||
}
|
||||
|
||||
translate_merge_tool_path () {
|
||||
echo code
|
||||
}
|
||||
Reference in New Issue
Block a user