💾 Archived View for shiny.bneil.me › notes › 2024-08-26-meld-three-way › index.gmi captured on 2024-09-29 at 00:16:53. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

merge-threeway

Description

enable this:

git config --global merge.conflictstyle diff3

git config output:

[diff]
    tool = meld
[difftool]
    prompt = false
[difftool "meld"]
    trustExitCode = true
    cmd = open -W -a Meld --args \"$LOCAL\" \"$PWD/$REMOTE\"
[merge]
    tool = meld
        conflictstyle = diff3
[mergetool]
    prompt = false
[mergetool "meld"]
    trustExitCode = true
    cmd = open -W -a Meld --args --auto-merge "$PWD/$LOCAL" "$PWD/$BASE" "$PWD/$REMOTE" --output "$PWD/$MERGED"

---

updated: 14 September 2024.

to the Index

/ html