relax usage of the progress API
[git/dscho.git] / git-mergetool.sh
blob9f4f3134b60174495c23968cf1ca01ffdbc49bdf
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 (kdiff3 --auto --L1 "$path (Base)" --L2 "$path (Local)" --L3 "$path (Remote)" \
196 -o "$path" -- "$BASE" "$LOCAL" "$REMOTE" > /dev/null 2>&1)
197 else
198 (kdiff3 --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 tkdiff -a "$BASE" -o "$path" -- "$LOCAL" "$REMOTE"
207 else
208 tkdiff -o "$path" -- "$LOCAL" "$REMOTE"
210 status=$?
211 save_backup
213 meld|vimdiff)
214 touch "$BACKUP"
215 $merge_tool -- "$LOCAL" "$path" "$REMOTE"
216 check_unchanged
217 save_backup
219 gvimdiff)
220 touch "$BACKUP"
221 gvimdiff -f -- "$LOCAL" "$path" "$REMOTE"
222 check_unchanged
223 save_backup
225 xxdiff)
226 touch "$BACKUP"
227 if base_present ; then
228 xxdiff -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 xxdiff -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 opendiff "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$path" | cat
247 else
248 opendiff "$LOCAL" "$REMOTE" -merge "$path" | cat
250 check_unchanged
251 save_backup
253 emerge)
254 if base_present ; then
255 emacs -f emerge-files-with-ancestor-command "$LOCAL" "$REMOTE" "$BASE" "$(basename "$path")"
256 else
257 emacs -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 if test -z "$merge_tool"; then
301 merge_tool=`git config merge.tool`
302 case "$merge_tool" in
303 kdiff3 | tkdiff | xxdiff | meld | opendiff | emerge | vimdiff | gvimdiff | "")
304 ;; # happy
306 echo >&2 "git config option merge.tool set to unknown tool: $merge_tool"
307 echo >&2 "Resetting to default..."
308 unset merge_tool
310 esac
313 if test -z "$merge_tool" ; then
314 if test -n "$DISPLAY"; then
315 merge_tool_candidates="kdiff3 tkdiff xxdiff meld gvimdiff"
316 if test -n "$GNOME_DESKTOP_SESSION_ID" ; then
317 merge_tool_candidates="meld $merge_tool_candidates"
319 if test "$KDE_FULL_SESSION" = "true"; then
320 merge_tool_candidates="kdiff3 $merge_tool_candidates"
323 if echo "${VISUAL:-$EDITOR}" | grep 'emacs' > /dev/null 2>&1; then
324 merge_tool_candidates="$merge_tool_candidates emerge"
326 if echo "${VISUAL:-$EDITOR}" | grep 'vim' > /dev/null 2>&1; then
327 merge_tool_candidates="$merge_tool_candidates vimdiff"
329 merge_tool_candidates="$merge_tool_candidates opendiff emerge vimdiff"
330 echo "merge tool candidates: $merge_tool_candidates"
331 for i in $merge_tool_candidates; do
332 if test $i = emerge ; then
333 cmd=emacs
334 else
335 cmd=$i
337 if type $cmd > /dev/null 2>&1; then
338 merge_tool=$i
339 break
341 done
342 if test -z "$merge_tool" ; then
343 echo "No available merge resolution programs available."
344 exit 1
348 case "$merge_tool" in
349 kdiff3|tkdiff|meld|xxdiff|vimdiff|gvimdiff|opendiff)
350 if ! type "$merge_tool" > /dev/null 2>&1; then
351 echo "The merge tool $merge_tool is not available"
352 exit 1
355 emerge)
356 if ! type "emacs" > /dev/null 2>&1; then
357 echo "Emacs is not available"
358 exit 1
362 echo "Unknown merge tool: $merge_tool"
363 exit 1
365 esac
367 if test $# -eq 0 ; then
368 files=`git ls-files -u | sed -e 's/^[^ ]* //' | sort -u`
369 if test -z "$files" ; then
370 echo "No files need merging"
371 exit 0
373 echo Merging the files: $files
374 git ls-files -u | sed -e 's/^[^ ]* //' | sort -u | while read i
376 printf "\n"
377 merge_file "$i" < /dev/tty > /dev/tty
378 done
379 else
380 while test $# -gt 0; do
381 printf "\n"
382 merge_file "$1"
383 shift
384 done
386 exit 0