Page 1 of 3

svn clients

Posted: Sun May 17, 2009 5:37 pm
by yemista
What is a good svn client for gnome? I just started using svn under linux, but dont know what the easiest client might be. I am used to Tortoise svn. Any suggestions?

Re: svn clients

Posted: Sun May 17, 2009 8:10 pm
by Brynet-Inc
Hey I have an idea!

$ apropos svn

Good luck.

Re: svn clients

Posted: Mon May 18, 2009 6:19 am
by yemista
You know, I am well aware there are many different svn clients out there, and I downloaded and tried compiling about 6-7 of them last night. What I was wondering was what other people use and what they prefer.

Re: svn clients

Posted: Mon May 18, 2009 6:21 am
by pcmattman
svn on the command line in Windows and Linux. There's nothing else that can give me the power I need.

Re: svn clients

Posted: Mon May 18, 2009 6:42 am
by Solar
I agree with pcmattman - having a GUI between me and my repository makes me feel nervous. ;-)

But as you're a Tortoise user gone GNOME, you'll probably like NautilusSVN.

Re: svn clients

Posted: Mon May 18, 2009 10:51 am
by yemista
You guys sold me on the power. I guess its best I sit there and learn the svn cli

Re: svn clients

Posted: Mon May 18, 2009 12:27 pm
by steveklabnik
My favorite svn client is git, personally.

Re: svn clients

Posted: Mon May 18, 2009 2:04 pm
by Combuster
<troll alert>
My favorite svn client is git, personally.
</troll alert>

Re: svn clients

Posted: Mon May 18, 2009 2:41 pm
by Brynet-Inc
steveklabnik wrote:My favorite svn client is git, personally.
Hey you attempted humour! good for you!
yemista wrote:You know, I am well aware there are many different svn clients out there, and I downloaded and tried compiling about 6-7 of them last night. What I was wondering was what other people use and what they prefer.
The point I was trying to make is that the best SVN client is the official one, all the others are just boring front ends.

Once that's installed, you can use apropos(1) to find and read the relevant man pages.. and consider bookmarking the following website as well.

http://svnbook.red-bean.com/

Good luck..

Re: svn clients

Posted: Mon May 18, 2009 3:13 pm
by yemista
well to be honest with you, i guess i havnt been asking good questions because i dont even really know what svn is, and wasnt sure what i was talking about, and I actually did look for tutorials before I asked, but they didnt quite enlighten me on the nature of svn. Thank you for the link, I will read up on it.

Re: svn clients

Posted: Mon May 18, 2009 9:34 pm
by ruisleipa
Brynet-Inc wrote:
steveklabnik wrote:My favorite svn client is git, personally.
Hey you attempted humour! good for you!
I think that was not humour. Git can use a svn repository.

Re: svn clients

Posted: Mon May 18, 2009 10:19 pm
by 01000101

Code: Select all

sudo apt-get install subversion
ftw!

I just stick with the CL when it comes to source management. I agree with pcmattman/Solar on the nervousness when it comes to using GUIs for this particular task.

Re: svn clients

Posted: Mon May 18, 2009 10:43 pm
by Solar
01000101 wrote:

Code: Select all

sudo apt-get install subversion
ftw!
Bah.

Code: Select all

emerge subversion
8)

Re: svn clients

Posted: Mon May 18, 2009 10:49 pm
by chase
What are you using the repo for? If it is code projects why not just use the svn client for you IDE?

Re: svn clients

Posted: Mon May 18, 2009 11:53 pm
by pcmattman
Solar wrote:
01000101 wrote:

Code: Select all

sudo apt-get install subversion
ftw!
Bah.

Code: Select all

emerge subversion
8)

Code: Select all

wget http://subversion.tigris.org/downloads/subversion-1.6.2.tar.gz
tar -xzf subversion-1.6.2.tar.gz
cd subversion-1.6.2
./configure
make
sudo make install
:mrgreen: