SVN Merge 仅修订版更改

SVN Merge just revision changes only

假设我有文件夹 A 的修订版 101、修订版 102 和修订版 103。 我想将文件夹 A 合并到文件夹 B,仅包含在修订版 103 中为文件夹 A 提交的更改。我不希望修订版 102 中的更改。 我的理解是合并修订版 103 将合并所有内容,包括 102 和 101。我怎样才能将修订版 103 中的更改合并到文件夹 B?

你需要cherrypicking:

Just as the term “changeset” is often used in version control systems, so is the term cherrypicking. This word refers to the act of choosing one specific changeset from a branch and replicating it to another.

svn merge -c 103 path_to_repo