You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by albert kong <al...@tom.com> on 2009/10/21 08:12:19 UTC

branch question,(can I see log message before the creation of the branch?)

In r100, I need to make new features for a client, so in r100, I made a branch,
In the branch b1(now is r101), I proceed on, but the client said he doesn't want some features I already
made in r71, r75 etc, then what's the best practice for this purpose?
Is it possible that I could see the log before r101 in branch b1?

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2409673

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

RE: branch question,(can I see log message before the creation of the branch?)

Posted by Giulio Troccoli <gi...@uk.linedata.com>.
>


Linedata Services (UK) Ltd
Registered Office: Bishopsgate Court, 4-12 Norton Folgate, London, E1 6DB
Registered in England and Wales No 3027851    VAT Reg No 778499447

-----Original Message-----


> From: albert kong [mailto:albertkong@tom.com]
> Sent: 21 October 2009 09:12
> To: users@subversion.tigris.org
> Subject: branch question,(can I see log message before the
> creation of the branch?)
>
> In r100, I need to make new features for a client, so in
> r100, I made a branch, In the branch b1(now is r101), I
> proceed on, but the client said he doesn't want some features
> I already made in r71, r75 etc, then what's the best practice
> for this purpose?

You can use reverse-merge, something like this I think

cd <branch b1>
svn merge -c-71 <URL to trunk>

> Is it possible that I could see the log before r101 in branch b1?

Yes, of course. But make sure NOT to use the --stop-on-copy option with the svn log command (if you use Tortoise this is ticked by default)

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2409690

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].