Re: vendor branch merge: how to highlight patches for review?
From: Ryan Schmidt <subversion-2012c_at_ryandesign.com>
Date: Tue, 28 Aug 2012 17:26:34 -0500
On Aug 28, 2012, at 15:57, "Q. Chap" wrote:
> When I merge the updates from "/vendor/libcomplex/2.0" to my project trunk/branch I will have many updated files in that working copy prior to commit.
These are two separate operations.
Merging is as in the book:
$ cd working-copies/calc
In fact I prefer to be explicit about what I'm merging, so if I'm upgrading my copy of the code from 1.0 to 2.0 then I do:
$ svn merge ^/vendor/libcomplex/1.0 \
And if you want to figure out what files you've modified in your copy of the code, that's a different separate command. Assuming you originally copied libcomplex 1.0 into your "calc" project as the book shows:
$ svn copy http://svn.example.com/repos/vendor/libcomplex/1.0 \
And then subsequently modified your copy in "calc" in some way and committed those changes, you can see which files you changed using this command:
$ svn diff --summarize \
If you want to see the actual diffs, not just the names of the files, omit the --summarize flag.
|
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.