svn clients
svn clients
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?
- Brynet-Inc
- Member
- Posts: 2426
- Joined: Tue Oct 17, 2006 9:29 pm
- Libera.chat IRC: brynet
- Location: Canada
- Contact:
Re: svn clients
Hey I have an idea!
$ apropos svn
Good luck.
$ apropos svn
Good luck.
Re: svn clients
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.
-
- Member
- Posts: 2566
- Joined: Sun Jan 14, 2007 9:15 pm
- Libera.chat IRC: miselin
- Location: Sydney, Australia (I come from a land down under!)
- Contact:
Re: svn clients
svn on the command line in Windows and Linux. There's nothing else that can give me the power I need.
Re: svn clients
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.
But as you're a Tortoise user gone GNOME, you'll probably like NautilusSVN.
Every good solution is obvious once you've found it.
Re: svn clients
You guys sold me on the power. I guess its best I sit there and learn the svn cli
- steveklabnik
- Member
- Posts: 72
- Joined: Wed Jan 28, 2009 4:30 pm
Re: svn clients
My favorite svn client is git, personally.
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: svn clients
<troll alert>
</troll alert>My favorite svn client is git, personally.
- Brynet-Inc
- Member
- Posts: 2426
- Joined: Tue Oct 17, 2006 9:29 pm
- Libera.chat IRC: brynet
- Location: Canada
- Contact:
Re: svn clients
Hey you attempted humour! good for you!steveklabnik wrote:My favorite svn client is git, personally.
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.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.
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
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
I think that was not humour. Git can use a svn repository.Brynet-Inc wrote:Hey you attempted humour! good for you!steveklabnik wrote:My favorite svn client is git, personally.
http://code.google.com/p/rmmtos/ - Real Mode MultiTasking Operating System
Re: svn clients
Code: Select all
sudo apt-get install subversion
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.
Website: https://joscor.com
Re: svn clients
Bah.01000101 wrote:ftw!Code: Select all
sudo apt-get install subversion
Code: Select all
emerge subversion
Every good solution is obvious once you've found it.
- chase
- Site Admin
- Posts: 710
- Joined: Wed Oct 20, 2004 10:46 pm
- Libera.chat IRC: chase_osdev
- Location: Texas
- Discord: chase/matt.heimer
- Contact:
Re: svn clients
What are you using the repo for? If it is code projects why not just use the svn client for you IDE?
-
- Member
- Posts: 2566
- Joined: Sun Jan 14, 2007 9:15 pm
- Libera.chat IRC: miselin
- Location: Sydney, Australia (I come from a land down under!)
- Contact:
Re: svn clients
Solar wrote:Bah.01000101 wrote:ftw!Code: Select all
sudo apt-get install subversion
Code: Select all
emerge subversion
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