home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / RCS43X.ZIP / MERGE.MAN < prev    next >
Text File  |  1990-11-19  |  1KB  |  37 lines

  1. NAME
  2.      merge - three-way file merge
  3.  
  4. SYNOPSIS
  5.      merge [ -p ] file1 file2 file3
  6.  
  7. DESCRIPTION
  8.      Merge incorporates all changes that lead form file2 to file3
  9.      into file1. The result goes to std. output if -p is present,
  10.      into file1 otherwise. Merge is useful for combining separate
  11.      changes to an original. Suppose file2 is the original, and
  12.      both file1 and file3 are modifications of file2. Then merge
  13.      combines both changes.
  14.  
  15.      An overlap occurs if both file1 and file3 have changes in a
  16.      common segment of lines.  Merge prints how many overlaps
  17.      occurred, and includes both alternatives in the result. The
  18.      alternatives are delimited as follows:
  19.  
  20.              <<<<<<< file1
  21.              lines in file1
  22.              =======
  23.              lines in file3
  24.              >>>>>>> file3
  25.  
  26.      If there are overlaps, the user should edit the result and
  27.      delete one of the alternatives.
  28.  
  29. IDENTIFICATION
  30.      Author: Walter F. Tichy, Purdue University, West Lafayette,
  31.      IN, 47907.
  32.      Revision Number: 1.3 ; Release Date: 89/10/30 .
  33.      Copyright c 1982, 1988, 1989 by Walter F. Tichy.
  34.  
  35. SEE ALSO
  36.      diff3 (1), diff (1), rcsmerge (L), co (L).
  37.