Hi, I have a project, for example WORDPRESS. and I am use SVN.
I have following copies:
A. WP2.6 from wordpress.org
B. WP2.6, I modify some core files (add/del/change some files' code)
C. WP2.7 from wordpress.org
I would like update Version A to C and keep the changes of version B.
some of my changes maybe like that:
Version A code:
123 123
Version B code:
123 x 123
Version C code:
123 123 123
expected final version:
123 x 123 123
How can I make/apply patch to this project ? any faster/easier way if I have 100+ different files
maybe I thinking in wrong way. please suggest to make it right. thanks.