Re: newbie doubt.. problem with import in windows

2010-12-20 Thread Stefan Sperling
On Mon, Dec 20, 2010 at 09:23:33PM -0800, sajan wrote: > hi, > > I was using subversion on windows.I set SVN_EDITOR env variable to > notepad.exe.Then I created a repository using svnadmin and tried to > import a project to it. > Suppose my original codebase is at C:\code\myproject,I want to creat

newbie doubt.. problem with import in windows

2010-12-20 Thread sajan
hi, I was using subversion on windows.I set SVN_EDITOR env variable to notepad.exe.Then I created a repository using svnadmin and tried to import a project to it. Suppose my original codebase is at C:\code\myproject,I want to create a workdir at C:\code\workdir >>cd C:\code >>svnadmin create svnre

Re: File Obstructed by Symbolic Link Prevents Submitting Unrelated Changelists

2010-12-20 Thread Nick
On Mon, 2010-12-20 at 17:34 -0600, Ryan Schmidt wrote: > The Subversion project still uses the tigris.org issue tracker; it > does not yet use the apache.org issue tracker. See the yellow box on > this page: > > http://subversion.apache.org/issue-tracker.html When I read that part of the page I

RE: [Question] Svn log show code diff

2010-12-20 Thread Zhang, Wei-Jovi (NSN - CN/Hangzhou)
Hi, Thanks very much for your answer. I get it. .jovi -Original Message- From: ext Ryan Schmidt [mailto:subversion-20...@ryandesign.com] Sent: Monday, December 20, 2010 10:02 PM To: Zhang, Wei-Jovi (NSN - CN/Hangzhou) Cc: Subversion Users Subject: Re: [Question] Svn log show co

Re: File Obstructed by Symbolic Link Prevents Submitting Unrelated Changelists

2010-12-20 Thread Ryan Schmidt
On Dec 20, 2010, at 17:17, Nick wrote: > I had opened an issue for this last year, but it's in the > subversion.tigris.org site: > http://subversion.tigris.org/issues/show_bug.cgi?id=3484 . > > Is this OK? Or should I open another issue in the apache.org tracker? The Subversion project still use

Re: File Obstructed by Symbolic Link Prevents Submitting Unrelated Changelists

2010-12-20 Thread Nick
On Mon, 2010-12-20 at 19:19 +0200, Daniel Shahaf wrote: > I can reproduce this with trunk: > [[[ > % cd wc1/trunk/ > % touch a b c d > % $svn add -q ? > % $svn ci -q -m add > % echo line1 >a >b > % rm c; ln -s d c > % $svn cl -q cltest a b > % $svn ci --cl cltest > subversion/svn/commit-cmd.c:156:

Revisions being involved while comparing branches

2010-12-20 Thread Pablo Beltran
Is there a direct way (via cmd line) to find out the revisions involved in the summary result of differencing two branches? An easy example: svn diff http://svn.apache.org/repos/asf/subversion/tags/1.6.14/subversion/libsvn_repos http://svn.apache.org/repos/asf/subversio

Re: File Obstructed by Symbolic Link Prevents Submitting Unrelated Changelists

2010-12-20 Thread Daniel Shahaf
Nick wrote on Mon, Dec 20, 2010 at 09:47:27 -0500: > (I originally reported this issue last year but nothing came of it.) > > A file which has been obstructed by changing it to a symbolic link > prevents submitting unrelated changelists. > > To repro, simply replace a file with a sym link of the

RE: ignored files

2010-12-20 Thread Bob Archer
> The updated version of that page of documentation for the current > version of Subversion is: > > http://svnbook.red-bean.com/nightly/en/svn.advanced.props.html > > Good to know, thanks.  Unfortunately Google returned the 1.1 > version of the doc for my query.  For different queries, I see the

File Obstructed by Symbolic Link Prevents Submitting Unrelated Changelists

2010-12-20 Thread Nick
(I originally reported this issue last year but nothing came of it.) A file which has been obstructed by changing it to a symbolic link prevents submitting unrelated changelists. To repro, simply replace a file with a sym link of the same name, and then try to submit a changelist which does not i

Re: ignored files

2010-12-20 Thread Nick
On Mon, 2010-12-20 at 07:48 -0600, Ryan Schmidt wrote: > The updated version of that page of documentation for the current > version of Subversion is: > > http://svnbook.red-bean.com/nightly/en/svn.advanced.props.html Good to know, thanks. Unfortunately Google returned the 1.1 version of the d

Re: [Question] Svn log show code diff

2010-12-20 Thread Daniel Shahaf
Ryan Schmidt wrote on Mon, Dec 20, 2010 at 08:01:40 -0600: > I'm removing dev@ from the Cc, since this is a question about how to use > Subversion, and not a discussion about its development. > +1 > > On Dec 19, 2010, at 21:17, Zhang, Wei-Jovi (NSN - CN/Hangzhou) wrote: > > > I have a

Re: A problem trying to use svn:// and http:// for a same repository at the same time

2010-12-20 Thread Ryan Schmidt
On Dec 20, 2010, at 01:03, David wrote: > We use http:// for local team. Currently another team at another site > need to visit our repository to cooperate. > They complain about the slow speed of diff, merge and tag. So I want > to turn on svn:// for them while http:// for us. > It seems to be p

Re: [Question] Svn log show code diff

2010-12-20 Thread Ryan Schmidt
I'm removing dev@ from the Cc, since this is a question about how to use Subversion, and not a discussion about its development. On Dec 19, 2010, at 21:17, Zhang, Wei-Jovi (NSN - CN/Hangzhou) wrote: > I have a question about svn log command, every time when I use svn > log command, I'm

Re: ignored files

2010-12-20 Thread Ryan Schmidt
On Dec 20, 2010, at 01:05, Nick wrote: > You can also ignore files so they don't show up in svn operations (like > svn status). This is accomplished via the svn:ignore property. See SVN > properties (http://svnbook.red-bean.com/en/1.1/ch07s02.html) for more > info. Let's not refer people to the

Re: A problem trying to use svn:// and http:// for a same repository at the same time

2010-12-20 Thread Stefan Sperling
On Sun, Dec 19, 2010 at 11:03:16PM -0800, David wrote: > ./svnadmin create --pre-1.5-compatible /local/svnroot/repository/one > #start the ./subversion/bin/svnserve How did you really invoke svnserve? Did you pass any options? You need to tell svnserve where to find repositories. This is done wit

Re: ignored files

2010-12-20 Thread Stefan Sperling
On Sat, Dec 18, 2010 at 09:39:55AM -0800, sajan wrote: > hi > is there any way I can avoid adding particular folders/files when I > add my code to subversion.In git you can do that using .gitignore > file. > > suppose I have this directory structure > > mycode > |tobeignored1 > |tobei

Re: Subversion 1.6.15 Released

2010-12-20 Thread Daniel Shahaf
Releases of binaries, releases of API consumers (eg, tortoisesvn, subclipse), releases of related tools (eg, svnmerge, svndumptool). None of these are currently on-topic for announce@, and it won't scale to have all of them on us...@. I'm wondering if having a dedicated ${bikeshed}-annou...@subve