Please give me some advice, about using Cherrypicking for project management

2016-12-29 Thread Jie
Hi,


There are four branches in my project: dev, sit, uat and production.
I am planing to apply Unified Change Management idea to project management 
(like CCCQ)


 Here is my plan:
Record commit info to TaskID’s description. For example, 


TASK-001:  
bundles revision: 100 and 110


TASK-013:
bundles revision: 105




When TASK-001 and TASK-013 are ready to deploy to sit, I will merge all the 
revisions in TASK-001 and TASK-013 to branches/sit.
In the working copy(always updated and clean) of sit branch, use command by 
turn: 
svn merge -c 100 ^/project/branches/dev
svn merge -c 105 ^/project/branches/dev
svn merge -c 110 ^/project/branches/dev


And when the TASK-001,013 are ready to deploy to UAT, I will merge the 
revisions to UAT branch (from branch dev).


Is it possible to do this?  Is there any potential risk for this process?  
Please kindly give me some advice. Thank you!


If anybody has such experience, please share with me.  Thanks!

Re: Svn branching issue

2016-12-29 Thread Ryan Schmidt

> On Dec 29, 2016, at 01:51, gyanendra ojha  wrote:
> 
> Hello guys,
> 
> I have one more issue
> 
> I have noticed that when there is space in folder name in svn repository..i 
> face issues while adding any file or folder to the folder from my local 
> working copy saying that the path does not exist on svn
> 
> Looks like svn cant read space in naming
> 
> Please help i cant remove space and i want to continue with that

svn should have no problem dealing with spaces in path names.

Show us the commands you're trying to use, and the error messages you're 
getting back, and maybe we can spot what the problem is.




Re: Svn branching issue

2016-12-29 Thread gyanendra ojha
Hi Ryan,

Thanks for reply, after checking out fresh copy of Target Support Files
when i try to do svn commit to path
*http://192.168.1.153/jetrepo/jetsvn/Application/CAPTIVE_SOCIAL/MSGCONNECT/Code/IOS/Trunk/MSGConnect/Pods/Target

Support Files*

as you can see there is space in "Target Support Files" which is reported
as not found during commit by SVN as below





[image: Inline image 1]

On Thu, Dec 29, 2016 at 10:40 PM, Ryan Schmidt <
subversion-2...@ryandesign.com> wrote:

>
> > On Dec 29, 2016, at 01:51, gyanendra ojha 
> wrote:
> >
> > Hello guys,
> >
> > I have one more issue
> >
> > I have noticed that when there is space in folder name in svn
> repository..i face issues while adding any file or folder to the folder
> from my local working copy saying that the path does not exist on svn
> >
> > Looks like svn cant read space in naming
> >
> > Please help i cant remove space and i want to continue with that
>
> svn should have no problem dealing with spaces in path names.
>
> Show us the commands you're trying to use, and the error messages you're
> getting back, and maybe we can spot what the problem is.
>
>
>


Re: Svn branching issue

2016-12-29 Thread Branko Čibej
On 30.12.2016 06:04, gyanendra ojha wrote:
> Hi Ryan,
>
> Thanks for reply, after checking out fresh copy of Target Support Files
> when i try to do svn commit to path
> *http://192.168.1.153/jetrepo/jetsvn/Application/CAPTIVE_SOCIAL/MSGCONNECT/Code/IOS/Trunk/MSGConnect/Pods/Target
> 
> Support Files*
>
> as you can see there is space in "Target Support Files" which is reported
> as not found during commit by SVN as below


It is not reported as not found, it is reported as out of date, and the
message clearly states that you have to 'svn update' first.

-- Brane