Skip to content

Instantly share code, notes, and snippets.

@awesome
Forked from joelpittet/.gitconfig
Created February 23, 2023 00:06
Show Gist options
  • Save awesome/7ab35c8d228fc0eb33e3e4b6c4505759 to your computer and use it in GitHub Desktop.
Save awesome/7ab35c8d228fc0eb33e3e4b6c4505759 to your computer and use it in GitHub Desktop.

Revisions

  1. @joelpittet joelpittet created this gist Mar 12, 2015.
    15 changes: 15 additions & 0 deletions .gitconfig
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    # Kaleidoscope.app as difftool and mergetool.
    [difftool "Kaleidoscope"]
    cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
    [diff]
    tool = Kaleidoscope
    [difftool]
    prompt = false
    [mergetool "Kaleidoscope"]
    cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
    trustExitCode = true
    [mergetool]
    prompt = false
    keepBackup = false
    [merge]
    tool = Kaleidoscope