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

Re: Can I combine 'complete' and 'cherry-pick' merges?

From: Eric Dramstad <edrams_at_gmail.com>
Date: Tue, 15 Mar 2016 20:58:16 +0000 (UTC)

Eric Dramstad <edrams <at> gmail.com> writes:
> I'm thinking of doing this (while standing inside a trunk workarea):
>
>    svn merge ^/feature
>     svn merge -c -100 ./file.c
>     svn merge -c -101 ./file.h
>     svn commit -m 'reintegrated feature'

That should have been:

    svn merge ^/feature
    svn merge -c -100 ^/feature/file.c ./file.c
    svn merge -c -101 ^/feature/file.h ./file.h
    svn commit -m 'reintegrated feature'

I also should have mentioned that I'm using subversion 1.9.3.
Received on 2016-03-15 22:05:22 CET

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.