blob: 94187c306ccb05d977f2bb35e81828130ab49a61 [file] [log] [blame]
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -05001#!/bin/sh
2#
3# This program resolves merge conflicts in git
4#
5# Copyright (c) 2006 Theodore Y. Ts'o
6#
7# This file is licensed under the GPL v2, or a later version
Josh Triplett2571ac62007-06-05 21:24:19 -07008# at the discretion of Junio C Hamano.
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -05009#
10
11USAGE='[--tool=tool] [file to merge] ...'
12SUBDIRECTORY_OK=Yes
Junio C Hamano8f321a32007-11-06 01:50:02 -080013OPTIONS_SPEC=
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050014. git-sh-setup
15require_work_tree
Junio C Hamano769f3982007-09-27 14:41:23 -070016prefix=$(git rev-parse --show-prefix)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050017
18# Returns true if the mode reflects a symlink
Theodore Ts'o262c9812007-03-29 06:55:11 -040019is_symlink () {
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050020 test "$1" = 120000
21}
22
Theodore Ts'o262c9812007-03-29 06:55:11 -040023local_present () {
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050024 test -n "$local_mode"
25}
26
Theodore Ts'o262c9812007-03-29 06:55:11 -040027remote_present () {
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050028 test -n "$remote_mode"
29}
30
Theodore Ts'o262c9812007-03-29 06:55:11 -040031base_present () {
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050032 test -n "$base_mode"
33}
34
35cleanup_temp_files () {
36 if test "$1" = --save-backup ; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +000037 mv -- "$BACKUP" "$MERGED.orig"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050038 rm -f -- "$LOCAL" "$REMOTE" "$BASE"
39 else
40 rm -f -- "$LOCAL" "$REMOTE" "$BASE" "$BACKUP"
41 fi
42}
43
Theodore Ts'o262c9812007-03-29 06:55:11 -040044describe_file () {
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050045 mode="$1"
46 branch="$2"
47 file="$3"
48
Theodore Ts'o27090aa2007-03-29 11:39:46 -040049 printf " {%s}: " "$branch"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050050 if test -z "$mode"; then
Theodore Ts'o27090aa2007-03-29 11:39:46 -040051 echo "deleted"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050052 elif is_symlink "$mode" ; then
Theodore Ts'o27090aa2007-03-29 11:39:46 -040053 echo "a symbolic link -> '$(cat "$file")'"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050054 else
55 if base_present; then
Theodore Ts'o27090aa2007-03-29 11:39:46 -040056 echo "modified"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050057 else
Theodore Ts'o27090aa2007-03-29 11:39:46 -040058 echo "created"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050059 fi
60 fi
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050061}
62
63
64resolve_symlink_merge () {
Theodore Ts'od1dc6952007-03-29 06:46:59 -040065 while true; do
Theodore Ts'o27090aa2007-03-29 11:39:46 -040066 printf "Use (l)ocal or (r)emote, or (a)bort? "
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050067 read ans
68 case "$ans" in
69 [lL]*)
Charles Baileyb3ea27e2008-02-21 23:30:34 +000070 git checkout-index -f --stage=2 -- "$MERGED"
71 git add -- "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050072 cleanup_temp_files --save-backup
73 return
74 ;;
Theodore Ts'o5a174f12007-03-29 09:48:31 -040075 [rR]*)
Charles Baileyb3ea27e2008-02-21 23:30:34 +000076 git checkout-index -f --stage=3 -- "$MERGED"
77 git add -- "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050078 cleanup_temp_files --save-backup
79 return
80 ;;
Theodore Ts'o5a174f12007-03-29 09:48:31 -040081 [aA]*)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050082 exit 1
83 ;;
84 esac
85 done
86}
87
88resolve_deleted_merge () {
Theodore Ts'od1dc6952007-03-29 06:46:59 -040089 while true; do
Theodore Ts'o27090aa2007-03-29 11:39:46 -040090 if base_present; then
91 printf "Use (m)odified or (d)eleted file, or (a)bort? "
92 else
93 printf "Use (c)reated or (d)eleted file, or (a)bort? "
94 fi
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050095 read ans
96 case "$ans" in
Theodore Ts'o27090aa2007-03-29 11:39:46 -040097 [mMcC]*)
Charles Baileyb3ea27e2008-02-21 23:30:34 +000098 git add -- "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -050099 cleanup_temp_files --save-backup
100 return
101 ;;
Theodore Ts'o5a174f12007-03-29 09:48:31 -0400102 [dD]*)
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000103 git rm -- "$MERGED" > /dev/null
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500104 cleanup_temp_files
105 return
106 ;;
Theodore Ts'o5a174f12007-03-29 09:48:31 -0400107 [aA]*)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500108 exit 1
109 ;;
110 esac
111 done
112}
113
Theodore Ts'oddc0c492007-03-29 09:39:59 -0400114check_unchanged () {
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000115 if test "$MERGED" -nt "$BACKUP" ; then
Theodore Ts'oddc0c492007-03-29 09:39:59 -0400116 status=0;
117 else
118 while true; do
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000119 echo "$MERGED seems unchanged."
Theodore Ts'oddc0c492007-03-29 09:39:59 -0400120 printf "Was the merge successful? [y/n] "
121 read answer < /dev/tty
122 case "$answer" in
123 y*|Y*) status=0; break ;;
124 n*|N*) status=1; break ;;
125 esac
126 done
127 fi
128}
129
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500130merge_file () {
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000131 MERGED="$1"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500132
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000133 f=`git ls-files -u -- "$MERGED"`
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500134 if test -z "$f" ; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000135 if test ! -f "$MERGED" ; then
136 echo "$MERGED: file not found"
Theodore Ts'oce5b6d72007-03-27 18:00:03 -0400137 else
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000138 echo "$MERGED: file does not need merging"
Theodore Ts'oce5b6d72007-03-27 18:00:03 -0400139 fi
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500140 exit 1
141 fi
142
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000143 ext="$$$(expr "$MERGED" : '.*\(\.[^/]*\)$')"
Patrick Higgins641dba42008-06-16 17:33:41 -0600144 BACKUP="./$MERGED.BACKUP.$ext"
145 LOCAL="./$MERGED.LOCAL.$ext"
146 REMOTE="./$MERGED.REMOTE.$ext"
147 BASE="./$MERGED.BASE.$ext"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500148
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000149 mv -- "$MERGED" "$BACKUP"
150 cp -- "$BACKUP" "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500151
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000152 base_mode=`git ls-files -u -- "$MERGED" | awk '{if ($3==1) print $1;}'`
153 local_mode=`git ls-files -u -- "$MERGED" | awk '{if ($3==2) print $1;}'`
154 remote_mode=`git ls-files -u -- "$MERGED" | awk '{if ($3==3) print $1;}'`
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500155
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000156 base_present && git cat-file blob ":1:$prefix$MERGED" >"$BASE" 2>/dev/null
157 local_present && git cat-file blob ":2:$prefix$MERGED" >"$LOCAL" 2>/dev/null
158 remote_present && git cat-file blob ":3:$prefix$MERGED" >"$REMOTE" 2>/dev/null
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500159
160 if test -z "$local_mode" -o -z "$remote_mode"; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000161 echo "Deleted merge conflict for '$MERGED':"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500162 describe_file "$local_mode" "local" "$LOCAL"
163 describe_file "$remote_mode" "remote" "$REMOTE"
164 resolve_deleted_merge
165 return
166 fi
167
168 if is_symlink "$local_mode" || is_symlink "$remote_mode"; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000169 echo "Symbolic link merge conflict for '$MERGED':"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500170 describe_file "$local_mode" "local" "$LOCAL"
171 describe_file "$remote_mode" "remote" "$REMOTE"
172 resolve_symlink_merge
173 return
174 fi
175
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000176 echo "Normal merge conflict for '$MERGED':"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500177 describe_file "$local_mode" "local" "$LOCAL"
178 describe_file "$remote_mode" "remote" "$REMOTE"
Theodore Ts'o20fa04e2007-03-27 12:12:22 -0400179 printf "Hit return to start merge resolution tool (%s): " "$merge_tool"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500180 read ans
181
182 case "$merge_tool" in
183 kdiff3)
184 if base_present ; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000185 ("$merge_tool_path" --auto --L1 "$MERGED (Base)" --L2 "$MERGED (Local)" --L3 "$MERGED (Remote)" \
Patrick Higgins641dba42008-06-16 17:33:41 -0600186 -o "$MERGED" "$BASE" "$LOCAL" "$REMOTE" > /dev/null 2>&1)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500187 else
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000188 ("$merge_tool_path" --auto --L1 "$MERGED (Local)" --L2 "$MERGED (Remote)" \
Patrick Higgins641dba42008-06-16 17:33:41 -0600189 -o "$MERGED" "$LOCAL" "$REMOTE" > /dev/null 2>&1)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500190 fi
191 status=$?
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500192 ;;
193 tkdiff)
194 if base_present ; then
Patrick Higgins641dba42008-06-16 17:33:41 -0600195 "$merge_tool_path" -a "$BASE" -o "$MERGED" "$LOCAL" "$REMOTE"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500196 else
Patrick Higgins641dba42008-06-16 17:33:41 -0600197 "$merge_tool_path" -o "$MERGED" "$LOCAL" "$REMOTE"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500198 fi
199 status=$?
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500200 ;;
James Bowes9cec6532007-03-18 22:11:54 -0400201 meld|vimdiff)
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500202 touch "$BACKUP"
Patrick Higgins641dba42008-06-16 17:33:41 -0600203 "$merge_tool_path" "$LOCAL" "$MERGED" "$REMOTE"
Theodore Ts'oddc0c492007-03-29 09:39:59 -0400204 check_unchanged
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500205 ;;
Dan McGee730b5b42007-06-05 21:19:47 -0400206 gvimdiff)
Charles Bailey44c36d12008-02-21 23:30:02 +0000207 touch "$BACKUP"
Patrick Higgins641dba42008-06-16 17:33:41 -0600208 "$merge_tool_path" -f "$LOCAL" "$MERGED" "$REMOTE"
Charles Bailey44c36d12008-02-21 23:30:02 +0000209 check_unchanged
210 ;;
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500211 xxdiff)
212 touch "$BACKUP"
213 if base_present ; then
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200214 "$merge_tool_path" -X --show-merged-pane \
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500215 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
216 -R 'Accel.Search: "Ctrl+F"' \
217 -R 'Accel.SearchForward: "Ctrl-G"' \
Patrick Higgins641dba42008-06-16 17:33:41 -0600218 --merged-file "$MERGED" "$LOCAL" "$BASE" "$REMOTE"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500219 else
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200220 "$merge_tool_path" -X --show-merged-pane \
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500221 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
222 -R 'Accel.Search: "Ctrl+F"' \
223 -R 'Accel.SearchForward: "Ctrl-G"' \
Patrick Higgins641dba42008-06-16 17:33:41 -0600224 --merged-file "$MERGED" "$LOCAL" "$REMOTE"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500225 fi
Theodore Ts'oddc0c492007-03-29 09:39:59 -0400226 check_unchanged
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500227 ;;
Theodore Ts'o365cf972007-03-29 10:03:17 -0400228 opendiff)
229 touch "$BACKUP"
230 if base_present; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000231 "$merge_tool_path" "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$MERGED" | cat
Theodore Ts'o365cf972007-03-29 10:03:17 -0400232 else
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000233 "$merge_tool_path" "$LOCAL" "$REMOTE" -merge "$MERGED" | cat
Theodore Ts'o365cf972007-03-29 10:03:17 -0400234 fi
235 check_unchanged
Theodore Ts'o365cf972007-03-29 10:03:17 -0400236 ;;
Steffen Prohaskaca8e6b72007-10-17 19:16:12 +0200237 ecmerge)
238 touch "$BACKUP"
239 if base_present; then
Sebastian Schuberthf4e9f782008-05-06 12:53:56 +0200240 "$merge_tool_path" "$BASE" "$LOCAL" "$REMOTE" --default --mode=merge3 --to="$MERGED"
Steffen Prohaskaca8e6b72007-10-17 19:16:12 +0200241 else
Sebastian Schuberthf4e9f782008-05-06 12:53:56 +0200242 "$merge_tool_path" "$LOCAL" "$REMOTE" --default --mode=merge2 --to="$MERGED"
Steffen Prohaskaca8e6b72007-10-17 19:16:12 +0200243 fi
244 check_unchanged
Steffen Prohaskaca8e6b72007-10-17 19:16:12 +0200245 ;;
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500246 emerge)
247 if base_present ; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000248 "$merge_tool_path" -f emerge-files-with-ancestor-command "$LOCAL" "$REMOTE" "$BASE" "$(basename "$MERGED")"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500249 else
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000250 "$merge_tool_path" -f emerge-files-command "$LOCAL" "$REMOTE" "$(basename "$MERGED")"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500251 fi
252 status=$?
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500253 ;;
Charles Bailey964473a2008-02-21 23:31:12 +0000254 *)
255 if test -n "$merge_tool_cmd"; then
256 if test "$merge_tool_trust_exit_code" = "false"; then
257 touch "$BACKUP"
258 ( eval $merge_tool_cmd )
259 check_unchanged
260 else
261 ( eval $merge_tool_cmd )
262 status=$?
263 fi
264 fi
265 ;;
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500266 esac
267 if test "$status" -ne 0; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000268 echo "merge of $MERGED failed" 1>&2
269 mv -- "$BACKUP" "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500270 exit 1
271 fi
Charles Bailey44c36d12008-02-21 23:30:02 +0000272
273 if test "$merge_keep_backup" = "true"; then
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000274 mv -- "$BACKUP" "$MERGED.orig"
Charles Bailey44c36d12008-02-21 23:30:02 +0000275 else
276 rm -- "$BACKUP"
277 fi
278
Charles Baileyb3ea27e2008-02-21 23:30:34 +0000279 git add -- "$MERGED"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500280 cleanup_temp_files
281}
282
David Kastrup822f7c72007-09-23 22:42:08 +0200283while test $# != 0
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500284do
285 case "$1" in
286 -t|--tool*)
287 case "$#,$1" in
288 *,*=*)
289 merge_tool=`expr "z$1" : 'z-[^=]*=\(.*\)'`
290 ;;
291 1,*)
292 usage ;;
293 *)
294 merge_tool="$2"
295 shift ;;
296 esac
297 ;;
298 --)
299 break
300 ;;
301 -*)
302 usage
303 ;;
304 *)
305 break
306 ;;
307 esac
308 shift
309done
310
Charles Bailey964473a2008-02-21 23:31:12 +0000311valid_custom_tool()
312{
313 merge_tool_cmd="$(git config mergetool.$1.cmd)"
314 test -n "$merge_tool_cmd"
315}
316
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200317valid_tool() {
318 case "$1" in
Steffen Prohaskaca8e6b72007-10-17 19:16:12 +0200319 kdiff3 | tkdiff | xxdiff | meld | opendiff | emerge | vimdiff | gvimdiff | ecmerge)
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200320 ;; # happy
321 *)
Charles Bailey964473a2008-02-21 23:31:12 +0000322 if ! valid_custom_tool "$1"; then
323 return 1
324 fi
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200325 ;;
326 esac
327}
328
329init_merge_tool_path() {
330 merge_tool_path=`git config mergetool.$1.path`
331 if test -z "$merge_tool_path" ; then
332 case "$1" in
333 emerge)
334 merge_tool_path=emacs
335 ;;
336 *)
337 merge_tool_path=$1
338 ;;
339 esac
340 fi
341}
342
343
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500344if test -z "$merge_tool"; then
Junio C Hamano5be60072007-07-02 22:52:14 -0700345 merge_tool=`git config merge.tool`
Steffen Prohaskad279fc12007-10-18 12:25:34 +0200346 if test -n "$merge_tool" && ! valid_tool "$merge_tool"; then
Theodore Ts'od6678c22007-03-18 22:30:10 -0400347 echo >&2 "git config option merge.tool set to unknown tool: $merge_tool"
348 echo >&2 "Resetting to default..."
349 unset merge_tool
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200350 fi
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500351fi
352
353if test -z "$merge_tool" ; then
Theodore Ts'o301ac382007-06-10 11:17:30 -0400354 if test -n "$DISPLAY"; then
355 merge_tool_candidates="kdiff3 tkdiff xxdiff meld gvimdiff"
356 if test -n "$GNOME_DESKTOP_SESSION_ID" ; then
357 merge_tool_candidates="meld $merge_tool_candidates"
358 fi
359 if test "$KDE_FULL_SESSION" = "true"; then
360 merge_tool_candidates="kdiff3 $merge_tool_candidates"
361 fi
362 fi
363 if echo "${VISUAL:-$EDITOR}" | grep 'emacs' > /dev/null 2>&1; then
364 merge_tool_candidates="$merge_tool_candidates emerge"
365 fi
366 if echo "${VISUAL:-$EDITOR}" | grep 'vim' > /dev/null 2>&1; then
367 merge_tool_candidates="$merge_tool_candidates vimdiff"
368 fi
369 merge_tool_candidates="$merge_tool_candidates opendiff emerge vimdiff"
370 echo "merge tool candidates: $merge_tool_candidates"
371 for i in $merge_tool_candidates; do
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200372 init_merge_tool_path $i
373 if type "$merge_tool_path" > /dev/null 2>&1; then
Theodore Ts'o301ac382007-06-10 11:17:30 -0400374 merge_tool=$i
375 break
376 fi
377 done
378 if test -z "$merge_tool" ; then
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200379 echo "No known merge resolution program available."
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500380 exit 1
381 fi
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200382else
383 if ! valid_tool "$merge_tool"; then
384 echo >&2 "Unknown merge_tool $merge_tool"
385 exit 1
386 fi
387
388 init_merge_tool_path "$merge_tool"
389
Charles Bailey44c36d12008-02-21 23:30:02 +0000390 merge_keep_backup="$(git config --bool merge.keepBackup || echo true)"
391
Charles Bailey964473a2008-02-21 23:31:12 +0000392 if test -z "$merge_tool_cmd" && ! type "$merge_tool_path" > /dev/null 2>&1; then
Steffen Prohaskae3fa2c72007-10-17 19:16:11 +0200393 echo "The merge tool $merge_tool is not available as '$merge_tool_path'"
394 exit 1
395 fi
Charles Bailey964473a2008-02-21 23:31:12 +0000396
397 if ! test -z "$merge_tool_cmd"; then
398 merge_tool_trust_exit_code="$(git config --bool mergetool.$merge_tool.trustExitCode || echo false)"
399 fi
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500400fi
401
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500402
403if test $# -eq 0 ; then
404 files=`git ls-files -u | sed -e 's/^[^ ]* //' | sort -u`
405 if test -z "$files" ; then
406 echo "No files need merging"
407 exit 0
408 fi
Rogan Dawes2e8fd782008-01-07 09:37:38 +0200409 echo Merging the files: "$files"
410 git ls-files -u |
411 sed -e 's/^[^ ]* //' |
412 sort -u |
413 while IFS= read i
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500414 do
Theodore Ts'o20fa04e2007-03-27 12:12:22 -0400415 printf "\n"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500416 merge_file "$i" < /dev/tty > /dev/tty
417 done
418else
419 while test $# -gt 0; do
Theodore Ts'o20fa04e2007-03-27 12:12:22 -0400420 printf "\n"
Theodore Ts'oc4b4a5a2007-03-06 00:05:16 -0500421 merge_file "$1"
422 shift
423 done
424fi
425exit 0