Re: Having trouble with svn checkout

2005-01-31 Thread Rory Winston
Wow.
svn checkout is slw. Is it just me or is there a noticeable 
performance difference between CVS and SVN?


svn co 
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk 
somefolder

Stephen
- Original Message - From: Wendy Smoak [EMAIL PROTECTED]
To: Jakarta Commons Developers List commons-dev@jakarta.apache.org
Sent: Sunday, January 30, 2005 5:02 PM
Subject: Having trouble with svn checkout

From: Henri Yandell [EMAIL PROTECTED] wrote:
The SVN migration is finished.
For an individual component, using lang as an example:
svn co
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang; 


I'm having trouble checking out a single Commons project:
$ svn co 
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang 

svn: URL 
'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang' 
doesn't exist

I was able to get the entire commons/proper using the command Craig 
posted yesterday (good thing disk space is cheap!):
$ svn checkout 
http://svn.apache.org/repos/asf/jakarta/commons/proper/current

What am I doing wrong?
--
Wendy Smoak

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Having trouble with svn checkout

2005-01-31 Thread Henri Yandell
Definitely a performance difference, but it's not all one way.

Updates and Commits for lots of files seems to be a lot quicker,
whereas for a single file is slower. jakarta-site2 was really becoming
a slow pain; I suspect the number of revisions on a file made it
slower in CVS.

Then there's the local stuff like svn revert, svn status, svn info
that don't use the network at all. They're much quicker :)

Hen

On Mon, 31 Jan 2005 11:51:49 +, Rory Winston [EMAIL PROTECTED] wrote:
 Wow.
 
 svn checkout is slw. Is it just me or is there a noticeable
 performance difference between CVS and SVN?
 
 
  svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk
  somefolder
 
  Stephen
 
  - Original Message - From: Wendy Smoak [EMAIL PROTECTED]
  To: Jakarta Commons Developers List commons-dev@jakarta.apache.org
  Sent: Sunday, January 30, 2005 5:02 PM
  Subject: Having trouble with svn checkout
 
 
  From: Henri Yandell [EMAIL PROTECTED] wrote:
 
  The SVN migration is finished.
  For an individual component, using lang as an example:
  svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang;
 
 
 
  I'm having trouble checking out a single Commons project:
 
  $ svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
 
  svn: URL
  'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang'
  doesn't exist
 
  I was able to get the entire commons/proper using the command Craig
  posted yesterday (good thing disk space is cheap!):
  $ svn checkout
  http://svn.apache.org/repos/asf/jakarta/commons/proper/current
 
  What am I doing wrong?
  --
  Wendy Smoak
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Having trouble with svn checkout

2005-01-31 Thread Dion Gillard
FWIW,

The lack of any status info for subclipse makes it seem really slow too.

Subclipse also gets confused sometimes about the status of files. You
can do a 'Team-Synchronize' and 'Update' a file, and it doesn't
disappear from the list of changed files.

The file has been updated on the filesystem, but Subclipse doesn't
seem to reflect it in the metadata for eclipse.

Restarting eclipse has fixed this for me.


On Mon, 31 Jan 2005 11:51:49 +, Rory Winston [EMAIL PROTECTED] wrote:
 Wow.
 
 svn checkout is slw. Is it just me or is there a noticeable
 performance difference between CVS and SVN?
 
 
  svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk
  somefolder
 
  Stephen
 
  - Original Message - From: Wendy Smoak [EMAIL PROTECTED]
  To: Jakarta Commons Developers List commons-dev@jakarta.apache.org
  Sent: Sunday, January 30, 2005 5:02 PM
  Subject: Having trouble with svn checkout
 
 
  From: Henri Yandell [EMAIL PROTECTED] wrote:
 
  The SVN migration is finished.
  For an individual component, using lang as an example:
  svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang;
 
 
 
  I'm having trouble checking out a single Commons project:
 
  $ svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
 
  svn: URL
  'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang'
  doesn't exist
 
  I was able to get the entire commons/proper using the command Craig
  posted yesterday (good thing disk space is cheap!):
  $ svn checkout
  http://svn.apache.org/repos/asf/jakarta/commons/proper/current
 
  What am I doing wrong?
  --
  Wendy Smoak
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


-- 
http://www.multitask.com.au/people/dion/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Having trouble with svn checkout

2005-01-30 Thread Wendy Smoak
From: Henri Yandell [EMAIL PROTECTED] wrote:
The SVN migration is finished.
For an individual component, using lang as an example:
svn co
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang;
I'm having trouble checking out a single Commons project:
$ svn co 
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
svn: URL 
'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang' 
doesn't exist

I was able to get the entire commons/proper using the command Craig posted 
yesterday (good thing disk space is cheap!):
$ svn checkout 
http://svn.apache.org/repos/asf/jakarta/commons/proper/current

What am I doing wrong?
--
Wendy Smoak

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Having trouble with svn checkout

2005-01-30 Thread Stephen Colebourne
svn co http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk 
somefolder

Stephen
- Original Message - 
From: Wendy Smoak [EMAIL PROTECTED]
To: Jakarta Commons Developers List commons-dev@jakarta.apache.org
Sent: Sunday, January 30, 2005 5:02 PM
Subject: Having trouble with svn checkout


From: Henri Yandell [EMAIL PROTECTED] wrote:
The SVN migration is finished.
For an individual component, using lang as an example:
svn co
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang;
I'm having trouble checking out a single Commons project:
$ svn co 
http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
svn: URL 
'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang' 
doesn't exist

I was able to get the entire commons/proper using the command Craig posted 
yesterday (good thing disk space is cheap!):
$ svn checkout 
http://svn.apache.org/repos/asf/jakarta/commons/proper/current

What am I doing wrong?
--
Wendy Smoak

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Having trouble with svn checkout

2005-01-30 Thread Henri Yandell
Sorry, my screwup. Late at night etc, it should have been:

 svn co
 http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk 
 commons-lang

ie) a space not a /.

Hen

On Sun, 30 Jan 2005 17:10:49 -, Stephen Colebourne
[EMAIL PROTECTED] wrote:
 svn co http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk 
 somefolder
 
 Stephen
 
 - Original Message -
 From: Wendy Smoak [EMAIL PROTECTED]
 To: Jakarta Commons Developers List commons-dev@jakarta.apache.org
 Sent: Sunday, January 30, 2005 5:02 PM
 Subject: Having trouble with svn checkout
 
  From: Henri Yandell [EMAIL PROTECTED] wrote:
  The SVN migration is finished.
  For an individual component, using lang as an example:
  svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang;
 
  I'm having trouble checking out a single Commons project:
 
  $ svn co
  http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
  svn: URL
  'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang'
  doesn't exist
 
  I was able to get the entire commons/proper using the command Craig posted
  yesterday (good thing disk space is cheap!):
  $ svn checkout
  http://svn.apache.org/repos/asf/jakarta/commons/proper/current
 
  What am I doing wrong?
  --
  Wendy Smoak
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Having trouble with svn checkout

2005-01-30 Thread Simon Kitching
On Sun, 2005-01-30 at 10:02 -0700, Wendy Smoak wrote:
 I'm having trouble checking out a single Commons project:
 
 $ svn co 
 http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang
 svn: URL 
 'http://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk/commons-lang'
  
 doesn't exist


As Henri has noted, he got the URL a bit wrong.

However I have just added some info in the wiki about using 'svn ls' to
explore the svn repository:
  http://wiki.apache.org/jakarta-commons/UsingSVN
See section 1, Misc Info.

I hope this helps..

Regards,

Simon


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]