Skip to content

Commit

Permalink
mergetools: support TortoiseGitMerge
Browse files Browse the repository at this point in the history
TortoiseMerge.exe was ben renamed to TortoiseGitMerge.exe (starting
with 1.8.0) in order to make it clear that it has special support
for git, and prevent confusion with the TortoiseSVN TortoiseMerge
version.

Signed-off-by: Sven Strickroth <email@cs-ware.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Sven Strickroth authored and Junio C Hamano committed Jan 27, 2013
1 parent 5d41784 commit 8bf6719
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion mergetools/tortoisemerge
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,16 @@ merge_cmd () {
-theirs:"$REMOTE" -merged:"$MERGED"
check_unchanged
else
echo "TortoiseMerge cannot be used without a base" 1>&2
echo "$merge_tool_path cannot be used without a base" 1>&2
return 1
fi
}

translate_merge_tool_path() {
if type tortoisegitmerge >/dev/null 2>/dev/null
then
echo tortoisegitmerge
else
echo tortoisemerge
fi
}

0 comments on commit 8bf6719

Please sign in to comment.