Is it possible to set rider as difftool in GitExtensions?

Viewed 24
1 Answers

I also searched for this solution and came across the same mention. After several attempts, I finally managed to do it :)

# Diff with JetBrains Rider
[diff]
    tool = rider
[difftool]
    prompt = false
[difftool "rider"]
    cmd = \"C:/your_path/rider64.exe\" diff \"$LOCAL\" \"$REMOTE\"
    path = C:/your_path/rider64.exe

# Merge with JetBrains Rider
[merge]
    tool = rider
[mergetool]
    prompt = false
[mergetool "rider"]
    cmd = \"C:/your_path/rider64.exe\" merge \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
    path = C:/your_path/rider64.exe
    trustExitCode = true

I made it globally in

C:\Users\your_user\.gitconfig

Related