Skip to content

Commit

Permalink
difftool: don't assume that default sh is sane
Browse files Browse the repository at this point in the history
git-difftool used to create a command list script containing $( ... )
and explicitly calls "sh -c" with this list.

Instead, allow mergetool --tool-help to take a mode parameter and call
mergetool directly to invoke the show_tool_help function. This mode
parameter is intented for use solely by difftool.

Signed-off-by: Charles Bailey <[email protected]>
Helped-by: John Keeping <[email protected]>
Signed-off-by: David Aguilar <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
hashpling authored and gitster committed Oct 15, 2014
1 parent 7bfb7c3 commit 4fb4b02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 1 addition & 5 deletions git-difftool.perl
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,9 @@ sub find_worktree

sub print_tool_help
{
my $cmd = 'TOOL_MODE=diff';
$cmd .= ' && . "$(git --exec-path)/git-mergetool--lib"';
$cmd .= ' && show_tool_help';

# See the comment at the bottom of file_diff() for the reason behind
# using system() followed by exit() instead of exec().
my $rc = system('sh', '-c', $cmd);
my $rc = system(qw(git mergetool --tool-help=diff));
exit($rc | ($rc >> 8));
}

Expand Down
4 changes: 4 additions & 0 deletions git-mergetool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ prompt=$(git config --bool mergetool.prompt || echo true)
while test $# != 0
do
case "$1" in
--tool-help=*)
TOOL_MODE=${1#--tool-help=}
show_tool_help
;;
--tool-help)
show_tool_help
;;
Expand Down

0 comments on commit 4fb4b02

Please sign in to comment.