mergetool: use path to mergetool in config var mergetool.<tool>.path
[git/gitster.git] / git-mergetool.sh
blob4f89cbe8e6ce86175a56b400bdcc34576db34d28
1 #!/bin/sh
3 # This program resolves merge conflicts in git
5 # Copyright (c) 2006 Theodore Y. Ts'o
7 # This file is licensed under the GPL v2, or a later version
8 # at the discretion of Junio C Hamano.
11 USAGE='[--tool=tool] [file to merge] ...'
12 SUBDIRECTORY_OK=Yes
13 . git-sh-setup
14 require_work_tree
15 prefix=$(git rev-parse --show-prefix)
17 # Returns true if the mode reflects a symlink
18 is_symlink () {
19 test "$1" = 120000
22 local_present () {
23 test -n "$local_mode"
26 remote_present () {
27 test -n "$remote_mode"
30 base_present () {
31 test -n "$base_mode"
34 cleanup_temp_files () {
35 if test "$1" = --save-backup ; then
36 mv -- "$BACKUP" "$path.orig"
37 rm -f -- "$LOCAL" "$REMOTE" "$BASE"
38 else
39 rm -f -- "$LOCAL" "$REMOTE" "$BASE" "$BACKUP"
43 describe_file () {
44 mode="$1"
45 branch="$2"
46 file="$3"
48 printf " {%s}: " "$branch"
49 if test -z "$mode"; then
50 echo "deleted"
51 elif is_symlink "$mode" ; then
52 echo "a symbolic link -> '$(cat "$file")'"
53 else
54 if base_present; then
55 echo "modified"
56 else
57 echo "created"
63 resolve_symlink_merge () {
64 while true; do
65 printf "Use (l)ocal or (r)emote, or (a)bort? "
66 read ans
67 case "$ans" in
68 [lL]*)
69 git checkout-index -f --stage=2 -- "$path"
70 git add -- "$path"
71 cleanup_temp_files --save-backup
72 return
74 [rR]*)
75 git checkout-index -f --stage=3 -- "$path"
76 git add -- "$path"
77 cleanup_temp_files --save-backup
78 return
80 [aA]*)
81 exit 1
83 esac
84 done
87 resolve_deleted_merge () {
88 while true; do
89 if base_present; then
90 printf "Use (m)odified or (d)eleted file, or (a)bort? "
91 else
92 printf "Use (c)reated or (d)eleted file, or (a)bort? "
94 read ans
95 case "$ans" in
96 [mMcC]*)
97 git add -- "$path"
98 cleanup_temp_files --save-backup
99 return
101 [dD]*)
102 git rm -- "$path" > /dev/null
103 cleanup_temp_files
104 return
106 [aA]*)
107 exit 1
109 esac
110 done
113 check_unchanged () {
114 if test "$path" -nt "$BACKUP" ; then
115 status=0;
116 else
117 while true; do
118 echo "$path seems unchanged."
119 printf "Was the merge successful? [y/n] "
120 read answer < /dev/tty
121 case "$answer" in
122 y*|Y*) status=0; break ;;
123 n*|N*) status=1; break ;;
124 esac
125 done
129 save_backup () {
130 if test "$status" -eq 0; then
131 mv -- "$BACKUP" "$path.orig"
135 remove_backup () {
136 if test "$status" -eq 0; then
137 rm "$BACKUP"
141 merge_file () {
142 path="$1"
144 f=`git ls-files -u -- "$path"`
145 if test -z "$f" ; then
146 if test ! -f "$path" ; then
147 echo "$path: file not found"
148 else
149 echo "$path: file does not need merging"
151 exit 1
154 BACKUP="$path.BACKUP.$$"
155 LOCAL="$path.LOCAL.$$"
156 REMOTE="$path.REMOTE.$$"
157 BASE="$path.BASE.$$"
159 mv -- "$path" "$BACKUP"
160 cp -- "$BACKUP" "$path"
162 base_mode=`git ls-files -u -- "$path" | awk '{if ($3==1) print $1;}'`
163 local_mode=`git ls-files -u -- "$path" | awk '{if ($3==2) print $1;}'`
164 remote_mode=`git ls-files -u -- "$path" | awk '{if ($3==3) print $1;}'`
166 base_present && git cat-file blob ":1:$prefix$path" >"$BASE" 2>/dev/null
167 local_present && git cat-file blob ":2:$prefix$path" >"$LOCAL" 2>/dev/null
168 remote_present && git cat-file blob ":3:$prefix$path" >"$REMOTE" 2>/dev/null
170 if test -z "$local_mode" -o -z "$remote_mode"; then
171 echo "Deleted merge conflict for '$path':"
172 describe_file "$local_mode" "local" "$LOCAL"
173 describe_file "$remote_mode" "remote" "$REMOTE"
174 resolve_deleted_merge
175 return
178 if is_symlink "$local_mode" || is_symlink "$remote_mode"; then
179 echo "Symbolic link merge conflict for '$path':"
180 describe_file "$local_mode" "local" "$LOCAL"
181 describe_file "$remote_mode" "remote" "$REMOTE"
182 resolve_symlink_merge
183 return
186 echo "Normal merge conflict for '$path':"
187 describe_file "$local_mode" "local" "$LOCAL"
188 describe_file "$remote_mode" "remote" "$REMOTE"
189 printf "Hit return to start merge resolution tool (%s): " "$merge_tool"
190 read ans
192 case "$merge_tool" in
193 kdiff3)
194 if base_present ; then
195 ("$merge_tool_path" --auto --L1 "$path (Base)" --L2 "$path (Local)" --L3 "$path (Remote)" \
196 -o "$path" -- "$BASE" "$LOCAL" "$REMOTE" > /dev/null 2>&1)
197 else
198 ("$merge_tool_path" --auto --L1 "$path (Local)" --L2 "$path (Remote)" \
199 -o "$path" -- "$LOCAL" "$REMOTE" > /dev/null 2>&1)
201 status=$?
202 remove_backup
204 tkdiff)
205 if base_present ; then
206 "$merge_tool_path" -a "$BASE" -o "$path" -- "$LOCAL" "$REMOTE"
207 else
208 "$merge_tool_path" -o "$path" -- "$LOCAL" "$REMOTE"
210 status=$?
211 save_backup
213 meld|vimdiff)
214 touch "$BACKUP"
215 "$merge_tool_path" -- "$LOCAL" "$path" "$REMOTE"
216 check_unchanged
217 save_backup
219 gvimdiff)
220 touch "$BACKUP"
221 "$merge_tool_path" -f -- "$LOCAL" "$path" "$REMOTE"
222 check_unchanged
223 save_backup
225 xxdiff)
226 touch "$BACKUP"
227 if base_present ; then
228 "$merge_tool_path" -X --show-merged-pane \
229 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
230 -R 'Accel.Search: "Ctrl+F"' \
231 -R 'Accel.SearchForward: "Ctrl-G"' \
232 --merged-file "$path" -- "$LOCAL" "$BASE" "$REMOTE"
233 else
234 "$merge_tool_path" -X --show-merged-pane \
235 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
236 -R 'Accel.Search: "Ctrl+F"' \
237 -R 'Accel.SearchForward: "Ctrl-G"' \
238 --merged-file "$path" -- "$LOCAL" "$REMOTE"
240 check_unchanged
241 save_backup
243 opendiff)
244 touch "$BACKUP"
245 if base_present; then
246 "$merge_tool_path" "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$path" | cat
247 else
248 "$merge_tool_path" "$LOCAL" "$REMOTE" -merge "$path" | cat
250 check_unchanged
251 save_backup
253 emerge)
254 if base_present ; then
255 "$merge_tool_path" -f emerge-files-with-ancestor-command "$LOCAL" "$REMOTE" "$BASE" "$(basename "$path")"
256 else
257 "$merge_tool_path" -f emerge-files-command "$LOCAL" "$REMOTE" "$(basename "$path")"
259 status=$?
260 save_backup
262 esac
263 if test "$status" -ne 0; then
264 echo "merge of $path failed" 1>&2
265 mv -- "$BACKUP" "$path"
266 exit 1
268 git add -- "$path"
269 cleanup_temp_files
272 while test $# != 0
274 case "$1" in
275 -t|--tool*)
276 case "$#,$1" in
277 *,*=*)
278 merge_tool=`expr "z$1" : 'z-[^=]*=\(.*\)'`
280 1,*)
281 usage ;;
283 merge_tool="$2"
284 shift ;;
285 esac
288 break
291 usage
294 break
296 esac
297 shift
298 done
300 valid_tool() {
301 case "$1" in
302 kdiff3 | tkdiff | xxdiff | meld | opendiff | emerge | vimdiff | gvimdiff)
303 ;; # happy
305 return 1
307 esac
310 init_merge_tool_path() {
311 merge_tool_path=`git config mergetool.$1.path`
312 if test -z "$merge_tool_path" ; then
313 case "$1" in
314 emerge)
315 merge_tool_path=emacs
318 merge_tool_path=$1
320 esac
325 if test -z "$merge_tool"; then
326 merge_tool=`git config merge.tool`
327 if ! valid_tool "$merge_tool"; then
328 echo >&2 "git config option merge.tool set to unknown tool: $merge_tool"
329 echo >&2 "Resetting to default..."
330 unset merge_tool
334 if test -z "$merge_tool" ; then
335 if test -n "$DISPLAY"; then
336 merge_tool_candidates="kdiff3 tkdiff xxdiff meld gvimdiff"
337 if test -n "$GNOME_DESKTOP_SESSION_ID" ; then
338 merge_tool_candidates="meld $merge_tool_candidates"
340 if test "$KDE_FULL_SESSION" = "true"; then
341 merge_tool_candidates="kdiff3 $merge_tool_candidates"
344 if echo "${VISUAL:-$EDITOR}" | grep 'emacs' > /dev/null 2>&1; then
345 merge_tool_candidates="$merge_tool_candidates emerge"
347 if echo "${VISUAL:-$EDITOR}" | grep 'vim' > /dev/null 2>&1; then
348 merge_tool_candidates="$merge_tool_candidates vimdiff"
350 merge_tool_candidates="$merge_tool_candidates opendiff emerge vimdiff"
351 echo "merge tool candidates: $merge_tool_candidates"
352 for i in $merge_tool_candidates; do
353 init_merge_tool_path $i
354 if type "$merge_tool_path" > /dev/null 2>&1; then
355 merge_tool=$i
356 break
358 done
359 if test -z "$merge_tool" ; then
360 echo "No known merge resolution program available."
361 exit 1
363 else
364 if ! valid_tool "$merge_tool"; then
365 echo >&2 "Unknown merge_tool $merge_tool"
366 exit 1
369 init_merge_tool_path "$merge_tool"
371 if ! type "$merge_tool_path" > /dev/null 2>&1; then
372 echo "The merge tool $merge_tool is not available as '$merge_tool_path'"
373 exit 1
378 if test $# -eq 0 ; then
379 files=`git ls-files -u | sed -e 's/^[^ ]* //' | sort -u`
380 if test -z "$files" ; then
381 echo "No files need merging"
382 exit 0
384 echo Merging the files: $files
385 git ls-files -u | sed -e 's/^[^ ]* //' | sort -u | while read i
387 printf "\n"
388 merge_file "$i" < /dev/tty > /dev/tty
389 done
390 else
391 while test $# -gt 0; do
392 printf "\n"
393 merge_file "$1"
394 shift
395 done
397 exit 0