Ubuntu alternatives for Tortoise SVN in Linux
The user friendliness of TortoiseSVN is probably the best feature that Windows ever had, that linux didn’t. Having searched through a wide number of sites and blogs trying to find a good alternative for Tortoise SVN, I was able to shortlist the following tools
- KDESVN + Nautilus Scripts
- SmartSVN
- RapidSVN
- Eclipse SVN Plugins like Subclipse & Subversive (If you are a eclipse based developer)
My Personal best choices are,
- Subclipse for Eclipse
- KDESVN + Nautilus Scripts for Standalone clients
KDESVN + Nautilus Script as Standalone SVN clients
KDESVN is a Visual SVN Client tool that can be installed in Ubuntu. Try this command to install it
>> sudo apt-get install subversion kdesvn kompare
KDESVN gives users the ability to connect to a subversion repository and perform operations. But the coolest thing about Tortoise SVN is that its accessibility, it is available everywhere on the right click menu. So in order to replicate the ease of use, we will need to replicate the right click functionality in local file browser (which is nautilus). This can be done using a few nautilus scripts
After Installation, you will have to configure the rightclick menu scripts here
>> ~/.gnome2/nautilus-scripts
create a file called “kdesvn.sh” with the following contents
>> #!/bin/sh
>> kdesvn $1
assign execute rights to that file
>> chmod +x kdesvn.sh
Now open the file browser, you will be able to see KDESVN in the scripts context menu. To activate the SVN client, select some folder in local repository, and try the menu. It will popup the KDESVN interface.



January 2nd, 2009 at 11:39 am
This came at exactly the right time for me. Thanks for writing this!
April 27th, 2009 at 11:31 pm
There’s also TKSVN:
http://www.twobarleycorns.net/tkcvs.html
May 12th, 2009 at 4:33 am
great post - works like a charm - thanks.
June 3rd, 2009 at 1:40 am
Hi..
the latest version (1.2.4) of KDESVN installed in gnome does NOT require to create your own nautilus scripts.
Right clicking any folder containing a ‘.svn’ folder Show an action menu
Open with “kdesvn”
Thanks for the tip
August 21st, 2009 at 3:52 pm
Very helpful article.
I was missing TortoiseSVN so bad that I was considering going back to Windows for a while. Now, that’s a great SVN browser/client.
March 1st, 2010 at 12:13 am
Very good article. Thanks a ton.