Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8367689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:13:22+00:00 2026-06-09T13:13:22+00:00

Is it possible to view svn diff output graphically on Mac OS? Most of

  • 0

Is it possible to view “svn diff” output graphically on Mac OS?

Most of the graphical diff programs allow you to view only one file per time. Which is very inconvenient when you use svn and have changed like 10 files.

For Linux I have found a solution in “kompare” program.
I do:

svn diff > diffOut; kompare diffOut

and as result I work with graphical program and check all files at once like it shown on the picture.

Is there same thing for Mac OS?

P.S. “meld” programm seems to do the same (or it doesn’t?), and I have already tried to install it, but got an error. Therefore I supouse that I can’t install it under OSx 10.7.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:13:24+00:00Added an answer on June 9, 2026 at 1:13 pm
    1. There is kompare for Mac OS.
      It is a part of KDE SDK and one can get it using MacPorts:

      sudo port install kdesdk4
      launchctl load -w /Library/LaunchAgents/org.freedesktop.dbus-session.plist
      export PATH="/Applications/MacPorts/KDE4/kompare.app/Contents/MacOS:"$PATH
      

      and it works!

    2. Svn supports so called external diff.

    To use it one should create svn-wrapper script, which will take parameters returned by “svn diff” command and call differ with required parameters.

    here is an example of parameters “svn diff” returns:

    -u -L code/Class1.h (revision 16518) -L code/Class1.h (working copy) code/.svn/text-base/Class1.h.svn-base code/Class1.h
    

    opendiff needs last two. Therefore next bash script will be appropriate:

    #!/bin/sh
    
    if [ $# -lt 2 ]; then
        echo "usage: $0 [ignored args...] file1 file2" >&2
        exit 1
    fi
    
    # The last two arguments passed to this script are the paths to the files
    # to diff.
    while [ $# -gt 2 ]; do
        shift
    done
    
    exec opendiff $*
    

    put this script in svnwrapper.sh file. Made file executable:

    chmod +x svnwrapper.sh
    

    and put it in some common path, which is added to $PATH variable.
    Now you can call svn using

    svn diff --diff-cmd=svnwrapper.sh
    

    or just add at the section [helpers] in ~/.subversion/config file:

    diff-cmd = svnwrapper.sh
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: View the change history of a file using Git versioning Sometimes I
is this possible to view contents and Functions of a DLL file... few times
I'm sure I'm being dim, but is it possible to view the rendered output
Is it possible to view Androidmanifest.xml file? I just changed the extension of the
Is it possible to view part of the file at a time? BTW I
Possible Duplicate: Is it possible to view bytecode of Class file? I wanted to
Is it possible to view an array in the Visual Studio debugger? QuickWatch only
Is it possible to view the content of compiled app bundle(.app file)? check if
Is it possible to view the complete list of call stack for a given
Is it possible to view the collation for a specific schema via sql? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.