Skip to content

Commit

Permalink
Merge branch 'ss/mergetools-tortoise'
Browse files Browse the repository at this point in the history
Update mergetools to work better with newer merge helper tortoise ships.

* ss/mergetools-tortoise:
  mergetools: teach tortoisemerge to handle filenames with SP correctly
  mergetools: support TortoiseGitMerge
  • Loading branch information
Junio C Hamano committed Feb 7, 2013
2 parents 55f56fe + 81ed7b9 commit eeaf4e7
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions mergetools/tortoisemerge
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,29 @@ merge_cmd () {
if $base_present
then
touch "$BACKUP"
"$merge_tool_path" \
-base:"$BASE" -mine:"$LOCAL" \
-theirs:"$REMOTE" -merged:"$MERGED"
basename="$(basename "$merge_tool_path" .exe)"
if test "$basename" = "tortoisegitmerge"
then
"$merge_tool_path" \
-base "$BASE" -mine "$LOCAL" \
-theirs "$REMOTE" -merged "$MERGED"
else
"$merge_tool_path" \
-base:"$BASE" -mine:"$LOCAL" \
-theirs:"$REMOTE" -merged:"$MERGED"
fi
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 eeaf4e7

Please sign in to comment.