Copy only difference (kdiff, winmerge, any diff like tool)

前端 未结 6 914
名媛妹妹
名媛妹妹 2021-02-05 15:42

Is there possibility of copy ONLY difference of two files? Like in winmerge, but, I can\'t find this option\"enter

相关标签:
6条回答
  • 2021-02-05 16:05

    WinMerge offers the "Copy Left to..." or "Copy right to..." that will copy only the differences to a folder of choice.

    0 讨论(0)
  • 2021-02-05 16:09

    There is a free app called DiffMerge.

    Note : The option 'Show differences only' will be disabled until you switch to the bottom tab labeled Referenced View(Files as loaded). After that you should be able to use Differences Only view.

    Difference with content

    Difference only

    0 讨论(0)
  • 2021-02-05 16:10

    WinMerge has a built-in and simple way to generate such "diff only" files, that they called "patches".

    Click on "Tool", then on "Generate Patch...", and enter where you want to store the result:

    You will obtain (for your example) the file

    4,8c4,8
    < HELLO WORLD
    < HELLO WORLD
    < HELLO WORLD
    < HELLO WORLD
    < HELLO WORLD
    ---
    > 
    > 
    > 
    > 
    > 
    

    That uses the standard, compact way of representing diff and is easy to manipulate.

    0 讨论(0)
  • 2021-02-05 16:11

    Most diff tools have a patch generation functionality which can work toward the clipboard, this is mostly what you want as you will get only changed text on left and right side (if you remove the context lines). If you want only those of one side you can easily filter the patch with regard to the first character (removing all lines, using an editor, matching something like ^[+>].*$ to keep removed lines or ^[-<].*$ to keep added lines).

    The diff tool in command line will output just that, piped with a grep and one of the above regular expression you are done.

    0 讨论(0)
  • 2021-02-05 16:15

    In winmerge there is very nice feature- in tools you can generate raport in html by Tools-> Raport. After that operation you can parse generated html- and in that way get only differenece (but maybe it's not simplest solution)

    0 讨论(0)
  • 2021-02-05 16:17

    Here is how you do it in WinMerge:

    1. Disable any context lines: [View] > [Context] > [0 Lines].
    2. Select pane of interest: Click on pane.
    3. Select all text: [Edit] > [Select All] or [Ctrl]+[a].
    4. Copy selection: [Edit] > [Copy] or [Ctrl]+[c].
    0 讨论(0)
提交回复
热议问题