Re: mergeinfo between svn copied branches and merges

2013-05-08 Thread Z W
Hi Andrew thanks for responding. On Tue, May 7, 2013 at 2:14 PM, Andrew Reedick andrew.reed...@cbeyond.netwrote: From: Z W [mailto:mpc8...@gmail.com] Sent: Tuesday, May 07, 2013 11:53 AM To: users@subversion.apache.org Subject: mergeinfo between svn copied branches and merges we

How to use --record-only to unblock

2013-05-08 Thread Z W
Hi All We plan to merge from the trunk to a feature branch using --record-only for a few revisions numbers. Is there a way to unblock a revision number after first using --record-only ? Thanks Sincerely

Re: How to use --record-only to unblock

2013-05-08 Thread Johan Corveleyn
On Wed, May 8, 2013 at 12:51 PM, Z W mpc8...@gmail.com wrote: Hi All We plan to merge from the trunk to a feature branch using --record-only for a few revisions numbers. Is there a way to unblock a revision number after first using --record-only ? Good question, I'm not sure really. Try

RE: mergeinfo between svn copied branches and merges

2013-05-08 Thread Andrew Reedick
From: Z W [mailto:mpc8...@gmail.com] Sent: Wednesday, May 08, 2013 6:49 AM To: Andrew Reedick Cc: users@subversion.apache.org Subject: Re: mergeinfo between svn copied branches and merges In this case, all you should have to do is: a) merge branchC UP to branchB b) merge --reintegrate

svn issue

2013-05-08 Thread Amit Kumar [IN7537]
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

Sub-Version Query

2013-05-08 Thread Anupam Choubey
Hi, I have some queries on subversion - 1. What is the latest version avaiable of subversion? 2. What is the harrdware amp; software infrastructure required to install the subversion? 3. Is subversion a freeware or licensed sowtware? 4.I have to move some code base with all the versions of

Re: svn issue

2013-05-08 Thread Les Mikesell
On Wed, May 8, 2013 at 2:25 AM, Amit Kumar [IN7537] amit_ku...@mindtree.com wrote: 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

Re: Sub-Version Query

2013-05-08 Thread Phil Pinkerton
You answers are here: http://subversion.apache.org On May 8, 2013, at 3:30 AM, Anupam Choubey helloanu...@rediffmail.com wrote: Hi, I have some queries on subversion - 1. What is the latest version avaiable of subversion? 2. What is the harrdware software infrastructure required

RE: svn issue

2013-05-08 Thread Andrew Reedick
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

How to remove revision number in mergeinfo eligible list

2013-05-08 Thread Z W
Hi All We use SVN 1.6 We have a revision number which refuses to move to the merged list after applying a merge. [root@host branchWC]# svn mergeinfo --show-revs eligible https://some.url.com/svn/root/trunk r6554 [root@host branchWC]# svn merge -c 6554 --record-only

RE: How to remove revision number in mergeinfo eligible list

2013-05-08 Thread Andrew Reedick
From: Z W [mailto:mpc8...@gmail.com] Sent: Wednesday, May 08, 2013 3:05 PM To: users@subversion.apache.org Subject: How to remove revision number in mergeinfo eligible list Hi All  We use SVN 1.6 We have a revision number which refuses to move to the merged list after applying a

Re: How to remove revision number in mergeinfo eligible list

2013-05-08 Thread Z W
Hi Andrew Thanks for responding; appreciate it. We followed your instruction - svn propget svn:mergeinfo https://.../root/trunk a.txt svn propget svn:mergeinfo . b.txt diff a.txt b.txt a.txt returns an empty file b.txt returns empty too. The revision number 6554 change

RE: How to remove revision number in mergeinfo eligible list

2013-05-08 Thread Andrew Reedick
From: Z W [mailto:mpc8...@gmail.com] Sent: Wednesday, May 08, 2013 4:09 PM To: Andrew Reedick Cc: users@subversion.apache.org Subject: Re: How to remove revision number in mergeinfo eligible list Hi Andrew Thanks for responding; appreciate it. We followed your instruction -          svn

Re: How to remove revision number in mergeinfo eligible list

2013-05-08 Thread Z W
Hi Andrew Thanks for taking the time to respond. We did as told step by step and the result is the same - revision number is still in eligible list at the final step [root@host newbranchWC]# svn mergeinfo --show-revs eligible https://some.url.com/svn/root/trunk r6554 r9946 [root@host

RE: svn issue

2013-05-08 Thread Amit Kumar [IN7537]
Hi les, Thanks for reply. But in my condition there are 77 items are in parent folder which is group of project and some other folder like image location, document location. All project folder is required except like documents and image folder. so I have to check out from parent folder only.