1

After some reading with the intention to understand what is really svn reintegrate.

Can someone give an Example of:

svn merge of a branch to trunk and svn merge --reintegrate of a branch to trunk

Which give different results ?

barak
  • 869
  • 1
  • 11
  • 15
  • possible duplicate of [When is the reintegrate option really necessary?](http://stackoverflow.com/questions/1680519/when-is-the-reintegrate-option-really-necessary) – Ken White May 13 '14 at 14:21

1 Answers1

2
  1. svn merge and svn merge --reintegrate produce the identical results, for --reintegrate options getting (internally) diff is just slightly easier
  2. Best method now is
    • Migrate to SVN 1.8+
    • Forget about two styles of merge and use plain merge
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110