From: David Aguilar <davvid@gmail.com>
To: Phil Susi <phillsusi@gmail.com>, Junio C Hamano <gitster@pobox.com>
Cc: Philip Oakley <philipoakley@iee.org>,
Johannes Schindelin <johannes.schindelin@gmx.de>,
git@vger.kernel.org
Subject: [PATCH v2] mergetools: add winmerge as a builtin tool
Date: Tue, 12 May 2015 19:00:07 -0700 [thread overview]
Message-ID: <1431482407-63642-1-git-send-email-davvid@gmail.com> (raw)
Add a winmerge scriptlet with the commands described in [1] so
that users can use winmerge without needing to perform any
additional configuration.
[1] http://thread.gmane.org/gmane.comp.version-control.git/268631
Helped-by: Philip Oakley <philipoakley@iee.org>
Helped-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: David Aguilar <davvid@gmail.com>
---
Changes since v1: we now honor the $ProgramW6432 environment variable.
mergetools/winmerge | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 mergetools/winmerge
diff --git a/mergetools/winmerge b/mergetools/winmerge
new file mode 100644
index 0000000..db0b060
--- /dev/null
+++ b/mergetools/winmerge
@@ -0,0 +1,40 @@
+diff_cmd () {
+ "$merge_tool_path" -u -e "$LOCAL" "$REMOTE"
+ return 0
+}
+
+merge_cmd () {
+ # mergetool.winmerge.trustExitCode is implicitly false.
+ # touch $BACKUP so that we can check_unchanged.
+ touch "$BACKUP"
+ "$merge_tool_path" -u -e -dl Local -dr Remote \
+ "$LOCAL" "$REMOTE" "$MERGED"
+ check_unchanged
+}
+
+translate_merge_tool_path() {
+ # Use WinMergeU.exe if it exists in $PATH
+ if type WinMergeU.exe >/dev/null 2>&1
+ then
+ echo WinMergeU.exe
+ return
+ fi
+
+ # Look for WinMergeU.exe in the typical locations
+ winmerge_exe="WinMerge/WinMergeU.exe"
+ if test -n "$ProgramW6432" && test -x "$ProgramW6432/$winmerge_exe"
+ then
+ printf '%s' "$ProgramW6432/$winmerge_exe"
+ elif test -n "$PROGRAMFILES" && test -x "$PROGRAMFILES/$winmerge_exe"
+ then
+ printf '%s' "$PROGRAMFILES/$winmerge_exe"
+ elif test -x "/c/Program Files (x86)/$winmerge_exe"
+ then
+ printf '%s' "/c/Program Files (x86)/$winmerge_exe"
+ elif test -x "/c/Program Files/$winmerge_exe"
+ then
+ printf '%s' "/c/Program Files/$winmerge_exe"
+ else
+ echo WinMergeU.exe
+ fi
+}
--
1.8.5.3
next reply other threads:[~2015-05-13 2:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-13 2:00 David Aguilar [this message]
2015-05-13 8:10 ` [PATCH v2] mergetools: add winmerge as a builtin tool Johannes Schindelin
2015-05-13 13:19 ` Sebastian Schuberth
2015-05-13 15:22 ` Johannes Schindelin
2015-05-13 15:33 ` Sebastian Schuberth
2015-05-13 20:00 ` Sebastian Schuberth
2015-05-13 20:36 ` Sebastian Schuberth
2015-05-13 20:37 ` Sebastian Schuberth
2015-05-14 21:48 ` SZEDER Gábor
2015-05-15 5:46 ` Sebastian Schuberth
2015-05-15 9:01 ` SZEDER Gábor
2015-05-14 21:24 ` SZEDER Gábor
2015-05-15 5:40 ` Sebastian Schuberth
2015-05-20 4:10 ` David Aguilar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1431482407-63642-1-git-send-email-davvid@gmail.com \
--to=davvid@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johannes.schindelin@gmx.de \
--cc=philipoakley@iee.org \
--cc=phillsusi@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.