[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: svn issue

From: Andrew Reedick <Andrew.Reedick_at_cbeyond.net>
Date: Wed, 8 May 2013 10:24:54 -0400

You can do a fresh checkout and not include project10 in the initial update:
svn co -N svn://.../top_dir
cd top_dir
cd svn update project1 project2 ... project 9
Future 'svn update' commands in the top_dir directory will only update projects 1 through 9.

Or you can explicitly not update project 10:
Windows CMD shell:
for /f %i in (' svn ls ^| findstr /v project10') do @svn update %i

ksh/bash:
svn ls | grep -v project 10 | xargs svn update

Disclaimer: Top posting because Outlook has crushed my spirit.

From: Amit Kumar [IN7537] [mailto:Amit_Kumar_at_mindtree.com]
Sent: Wednesday, May 08, 2013 3:26 AM
To: users_at_subversion.apache.org
Cc: amitsinghrana1_at_gmail.com
Subject: svn issue

Hi,

I found an issue in SVN. Suppose there are 10 project is in directory. And I want to update only 9 project. There is no option to lock one project not to update.
By this issue I get problem. I will request you to solve this issue.

Thanks & Regards,
Amit kumar | Senior Software Engineer | P +91 80 670 60718 | M +91 9740012743 | www.mindtree.com<https://indiamail.mindtree.com/exchweb/bin/redir.asp?URL=http://www.mindtree.com/>
MindTree Limited | West Campus, Global Village, RVCE Post, Mysore Road, Bangalore, India - 560 059 | Welcome to possible

________________________________

http://www.mindtree.com/email/disclaimer.html
Received on 2013-05-08 16:26:08 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.