When --prompt option is set, git-difftool displays a prompt for each
modified file to be viewed in an external diff program.  At that
point, it could be useful to display a counter and the total number
of files in the diff queue.
Below is the current difftool prompt for the first of 5 modified files:
    Viewing: 'diff.c'
    Launch 'vimdiff' [Y/n]:
Consider the modified prompt:
    Viewing (1/5): 'diff.c'
    Launch 'vimdiff' [Y/n]:
The current GIT_EXTERNAL_DIFF mechanism does not tell the number of
paths in the diff queue nor the current counter.  To make this
"counter/total" info available for GIT_EXTERNAL_DIFF programs
without breaking existing ones by doing the following:
 - Keep track of the number of paths shown so far in diff_options;
 - Export two new environment variables from run_external_diff() to
   show the total number of paths (from diff_queue_struct) and the
   current value of the counter (from diff_options); and
 - Update git-difftool--helper to use these two environment variables.
Signed-off-by: Zoltan Klinger <zoltan.klinger@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# git-difftool--helper is a GIT_EXTERNAL_DIFF-compatible diff tool launcher.
 | 
						|
# This script is typically launched by using the 'git difftool'
 | 
						|
# convenience command.
 | 
						|
#
 | 
						|
# Copyright (c) 2009, 2010 David Aguilar
 | 
						|
 | 
						|
TOOL_MODE=diff
 | 
						|
. git-mergetool--lib
 | 
						|
 | 
						|
# difftool.prompt controls the default prompt/no-prompt behavior
 | 
						|
# and is overridden with $GIT_DIFFTOOL*_PROMPT.
 | 
						|
should_prompt () {
 | 
						|
	prompt_merge=$(git config --bool mergetool.prompt || echo true)
 | 
						|
	prompt=$(git config --bool difftool.prompt || echo $prompt_merge)
 | 
						|
	if test "$prompt" = true
 | 
						|
	then
 | 
						|
		test -z "$GIT_DIFFTOOL_NO_PROMPT"
 | 
						|
	else
 | 
						|
		test -n "$GIT_DIFFTOOL_PROMPT"
 | 
						|
	fi
 | 
						|
}
 | 
						|
 | 
						|
# Indicates that --extcmd=... was specified
 | 
						|
use_ext_cmd () {
 | 
						|
	test -n "$GIT_DIFFTOOL_EXTCMD"
 | 
						|
}
 | 
						|
 | 
						|
launch_merge_tool () {
 | 
						|
	# Merged is the filename as it appears in the work tree
 | 
						|
	# Local is the contents of a/filename
 | 
						|
	# Remote is the contents of b/filename
 | 
						|
	# Custom merge tool commands might use $BASE so we provide it
 | 
						|
	MERGED="$1"
 | 
						|
	LOCAL="$2"
 | 
						|
	REMOTE="$3"
 | 
						|
	BASE="$1"
 | 
						|
 | 
						|
	# $LOCAL and $REMOTE are temporary files so prompt
 | 
						|
	# the user with the real $MERGED name before launching $merge_tool.
 | 
						|
	if should_prompt
 | 
						|
	then
 | 
						|
		printf "\nViewing (%s/%s): '%s'\n" "$GIT_DIFF_PATH_COUNTER" \
 | 
						|
			"$GIT_DIFF_PATH_TOTAL" "$MERGED"
 | 
						|
		if use_ext_cmd
 | 
						|
		then
 | 
						|
			printf "Launch '%s' [Y/n]: " \
 | 
						|
				"$GIT_DIFFTOOL_EXTCMD"
 | 
						|
		else
 | 
						|
			printf "Launch '%s' [Y/n]: " "$merge_tool"
 | 
						|
		fi
 | 
						|
		if read ans && test "$ans" = n
 | 
						|
		then
 | 
						|
			return
 | 
						|
		fi
 | 
						|
	fi
 | 
						|
 | 
						|
	if use_ext_cmd
 | 
						|
	then
 | 
						|
		export BASE
 | 
						|
		eval $GIT_DIFFTOOL_EXTCMD '"$LOCAL"' '"$REMOTE"'
 | 
						|
	else
 | 
						|
		run_merge_tool "$merge_tool"
 | 
						|
	fi
 | 
						|
}
 | 
						|
 | 
						|
if ! use_ext_cmd
 | 
						|
then
 | 
						|
	if test -n "$GIT_DIFF_TOOL"
 | 
						|
	then
 | 
						|
		merge_tool="$GIT_DIFF_TOOL"
 | 
						|
	else
 | 
						|
		merge_tool="$(get_merge_tool)" || exit
 | 
						|
	fi
 | 
						|
fi
 | 
						|
 | 
						|
if test -n "$GIT_DIFFTOOL_DIRDIFF"
 | 
						|
then
 | 
						|
	LOCAL="$1"
 | 
						|
	REMOTE="$2"
 | 
						|
	run_merge_tool "$merge_tool" false
 | 
						|
else
 | 
						|
	# Launch the merge tool on each path provided by 'git diff'
 | 
						|
	while test $# -gt 6
 | 
						|
	do
 | 
						|
		launch_merge_tool "$1" "$2" "$5"
 | 
						|
		shift 7
 | 
						|
	done
 | 
						|
fi
 |