From 0c4fd45829cae20792348238dcc559bc5ec3dffa Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 2 Jun 2019 14:29:45 +0100 Subject: [PATCH] meld: add page (#3065) --- pages/common/meld.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/meld.md diff --git a/pages/common/meld.md b/pages/common/meld.md new file mode 100644 index 0000000000..26ad9b2b81 --- /dev/null +++ b/pages/common/meld.md @@ -0,0 +1,28 @@ +# meld + +> Graphical diffing and merging tool. +> More information: . + +- Start meld: + +`meld` + +- Compare 2 files: + +`meld {{path/to/file_1}} {{path/to/file_2}}` + +- Compare 2 directories: + +`meld {{path/to/directory_1}} {{path/to/directory_2}}` + +- Compare 3 files: + +`meld {{path/to/file_1}} {{path/to/file_2}} {{path/to/file_3}}` + +- Open a comparison as a new tab in a pre-existing meld instance: + +`meld --newtab {{path/to/file_1}} {{path/to/file_2}}` + +- Compare multiple sets of files: + +`meld --diff {{path/to/file_1}} {{path/to/file_2}} --diff {{path/to/file_3}} {{path/to/file_4}}`