Re: using "svn merge", "svn diff", and "svn patch"
From: Stefan Sperling <stsp_at_elego.de>
Date: Fri, 23 Aug 2013 13:41:42 +0200
On Thu, Aug 22, 2013 at 09:40:08AM -0400, James Hanley wrote:
If the changeset you want to transfer between working copies cannot
The changes will appear in repository history but they don't need
Say you did:
svn checkout TRUNK_URL first-wc
Now you could do this to create a new branch:
svn copy ^/trunk ^/branches/my-new-branch
Or even just:
svn copy . ^/branches/my-new-branch
The other side can now checkout the branch:
svn checkout ^/branches/my-new-branch
Or switch an existing trunk working copy to the branch:
cd other-trunk-wc
Or merge the branch into an existing trunk working copy:
cd other-trunk-wc
(The above assumes a Subversion 1.8 client. Older clients need the
|
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.