codereviewanskquestions
codereviewanskquestions

Reputation: 13998

how to merge / copy the latest revision from a branch to another branch

suppose I have two branches, A and B. A has the latest change withe new files. I want to copy whatever in A into B so that B has all the changes made in A. How do I do this?

Upvotes: 2

Views: 256

Answers (2)

Peter Bratton
Peter Bratton

Reputation: 6408

svn merge:

svn merge — Apply the differences between two sources to a working copy path.

Upvotes: 0

shx2
shx2

Reputation: 64368

Not surprisingly, you should use svn merge. See here for example.

Upvotes: 1

Related Questions