home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / UTILITY / DOSRCSMP.ZIP / MERGE.MAN < prev    next >
Encoding:
Text File  |  1990-08-22  |  1.4 KB  |  67 lines

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