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] [-y|--no-prompt|--prompt] [file to merge] ...'
16 prefix
=$
(git rev-parse
--show-prefix)
18 # Returns true if the mode reflects a symlink
28 test -n "$remote_mode"
35 cleanup_temp_files
() {
36 if test "$1" = --save-backup ; then
37 mv -- "$BACKUP" "$MERGED.orig"
38 rm -f -- "$LOCAL" "$REMOTE" "$BASE"
40 rm -f -- "$LOCAL" "$REMOTE" "$BASE" "$BACKUP"
49 printf " {%s}: " "$branch"
50 if test -z "$mode"; then
52 elif is_symlink
"$mode" ; then
53 echo "a symbolic link -> '$(cat "$file")'"
64 resolve_symlink_merge
() {
66 printf "Use (l)ocal or (r)emote, or (a)bort? "
70 git checkout-index
-f --stage=2 -- "$MERGED"
72 cleanup_temp_files
--save-backup
76 git checkout-index
-f --stage=3 -- "$MERGED"
78 cleanup_temp_files
--save-backup
88 resolve_deleted_merge
() {
91 printf "Use (m)odified or (d)eleted file, or (a)bort? "
93 printf "Use (c)reated or (d)eleted file, or (a)bort? "
99 cleanup_temp_files
--save-backup
103 git
rm -- "$MERGED" > /dev
/null
115 if test "$MERGED" -nt "$BACKUP" ; then
119 echo "$MERGED seems unchanged."
120 printf "Was the merge successful? [y/n] "
121 read answer
< /dev
/tty
123 y
*|Y
*) status
=0; break ;;
124 n
*|N
*) status
=1; break ;;
133 f
=`git ls-files -u -- "$MERGED"`
134 if test -z "$f" ; then
135 if test ! -f "$MERGED" ; then
136 echo "$MERGED: file not found"
138 echo "$MERGED: file does not need merging"
143 ext
="$$$(expr "$MERGED" : '.*\(\.[^/]*\)$')"
144 BACKUP
="./$MERGED.BACKUP.$ext"
145 LOCAL
="./$MERGED.LOCAL.$ext"
146 REMOTE
="./$MERGED.REMOTE.$ext"
147 BASE
="./$MERGED.BASE.$ext"
149 mv -- "$MERGED" "$BACKUP"
150 cp -- "$BACKUP" "$MERGED"
152 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;}'`
156 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
160 if test -z "$local_mode" -o -z "$remote_mode"; then
161 echo "Deleted merge conflict for '$MERGED':"
162 describe_file
"$local_mode" "local" "$LOCAL"
163 describe_file
"$remote_mode" "remote" "$REMOTE"
164 resolve_deleted_merge
168 if is_symlink
"$local_mode" || is_symlink
"$remote_mode"; then
169 echo "Symbolic link merge conflict for '$MERGED':"
170 describe_file
"$local_mode" "local" "$LOCAL"
171 describe_file
"$remote_mode" "remote" "$REMOTE"
172 resolve_symlink_merge
176 echo "Normal merge conflict for '$MERGED':"
177 describe_file
"$local_mode" "local" "$LOCAL"
178 describe_file
"$remote_mode" "remote" "$REMOTE"
179 if "$prompt" = true
; then
180 printf "Hit return to start merge resolution tool (%s): " "$merge_tool"
184 case "$merge_tool" in
186 if base_present
; then
187 ("$merge_tool_path" --auto --L1 "$MERGED (Base)" --L2 "$MERGED (Local)" --L3 "$MERGED (Remote)" \
188 -o "$MERGED" "$BASE" "$LOCAL" "$REMOTE" > /dev
/null
2>&1)
190 ("$merge_tool_path" --auto --L1 "$MERGED (Local)" --L2 "$MERGED (Remote)" \
191 -o "$MERGED" "$LOCAL" "$REMOTE" > /dev
/null
2>&1)
196 if base_present
; then
197 "$merge_tool_path" -a "$BASE" -o "$MERGED" "$LOCAL" "$REMOTE"
199 "$merge_tool_path" -o "$MERGED" "$LOCAL" "$REMOTE"
205 "$merge_tool_path" "$LOCAL" "$MERGED" "$REMOTE"
210 "$merge_tool_path" -f "$LOCAL" "$MERGED" "$REMOTE"
215 if base_present
; then
216 "$merge_tool_path" -X --show-merged-pane \
217 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
218 -R 'Accel.Search: "Ctrl+F"' \
219 -R 'Accel.SearchForward: "Ctrl-G"' \
220 --merged-file "$MERGED" "$LOCAL" "$BASE" "$REMOTE"
222 "$merge_tool_path" -X --show-merged-pane \
223 -R 'Accel.SaveAsMerged: "Ctrl-S"' \
224 -R 'Accel.Search: "Ctrl+F"' \
225 -R 'Accel.SearchForward: "Ctrl-G"' \
226 --merged-file "$MERGED" "$LOCAL" "$REMOTE"
232 if base_present
; then
233 "$merge_tool_path" "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$MERGED" |
cat
235 "$merge_tool_path" "$LOCAL" "$REMOTE" -merge "$MERGED" |
cat
241 if base_present
; then
242 "$merge_tool_path" "$BASE" "$LOCAL" "$REMOTE" --default --mode=merge3
--to="$MERGED"
244 "$merge_tool_path" "$LOCAL" "$REMOTE" --default --mode=merge2
--to="$MERGED"
249 if base_present
; then
250 "$merge_tool_path" -f emerge-files-with-ancestor-command
"$LOCAL" "$REMOTE" "$BASE" "$(basename "$MERGED")"
252 "$merge_tool_path" -f emerge-files-command
"$LOCAL" "$REMOTE" "$(basename "$MERGED")"
257 if test -n "$merge_tool_cmd"; then
258 if test "$merge_tool_trust_exit_code" = "false"; then
260 ( eval $merge_tool_cmd )
263 ( eval $merge_tool_cmd )
269 if test "$status" -ne 0; then
270 echo "merge of $MERGED failed" 1>&2
271 mv -- "$BACKUP" "$MERGED"
273 if test "$merge_keep_temporaries" = "false"; then
280 if test "$merge_keep_backup" = "true"; then
281 mv -- "$BACKUP" "$MERGED.orig"
291 prompt
=$
(git config
--bool mergetool.prompt ||
echo true
)
299 merge_tool
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
330 merge_tool_cmd
="$(git config mergetool.$1.cmd)"
331 test -n "$merge_tool_cmd"
336 kdiff3 | tkdiff | xxdiff | meld | opendiff | emerge | vimdiff | gvimdiff | ecmerge
)
339 if ! valid_custom_tool
"$1"; then
346 init_merge_tool_path
() {
347 merge_tool_path
=`git config mergetool.$1.path`
348 if test -z "$merge_tool_path" ; then
351 merge_tool_path
=emacs
360 prompt_after_failed_merge
() {
362 printf "Continue merging other unresolved paths (y/n) ? "
377 if test -z "$merge_tool"; then
378 merge_tool
=`git config merge.tool`
379 if test -n "$merge_tool" && ! valid_tool
"$merge_tool"; then
380 echo >&2 "git config option merge.tool set to unknown tool: $merge_tool"
381 echo >&2 "Resetting to default..."
386 if test -z "$merge_tool" ; then
387 if test -n "$DISPLAY"; then
388 merge_tool_candidates
="kdiff3 tkdiff xxdiff meld gvimdiff"
389 if test -n "$GNOME_DESKTOP_SESSION_ID" ; then
390 merge_tool_candidates
="meld $merge_tool_candidates"
392 if test "$KDE_FULL_SESSION" = "true"; then
393 merge_tool_candidates
="kdiff3 $merge_tool_candidates"
396 if echo "${VISUAL:-$EDITOR}" |
grep 'emacs' > /dev
/null
2>&1; then
397 merge_tool_candidates
="$merge_tool_candidates emerge"
399 if echo "${VISUAL:-$EDITOR}" |
grep 'vim' > /dev
/null
2>&1; then
400 merge_tool_candidates
="$merge_tool_candidates vimdiff"
402 merge_tool_candidates
="$merge_tool_candidates opendiff emerge vimdiff"
403 echo "merge tool candidates: $merge_tool_candidates"
404 for i
in $merge_tool_candidates; do
405 init_merge_tool_path
$i
406 if type "$merge_tool_path" > /dev
/null
2>&1; then
411 if test -z "$merge_tool" ; then
412 echo "No known merge resolution program available."
416 if ! valid_tool
"$merge_tool"; then
417 echo >&2 "Unknown merge_tool $merge_tool"
421 init_merge_tool_path
"$merge_tool"
423 merge_keep_backup
="$(git config --bool merge.keepBackup || echo true)"
424 merge_keep_temporaries
="$(git config --bool mergetool.keepTemporaries || echo false)"
426 if test -z "$merge_tool_cmd" && ! type "$merge_tool_path" > /dev
/null
2>&1; then
427 echo "The merge tool $merge_tool is not available as '$merge_tool_path'"
431 if ! test -z "$merge_tool_cmd"; then
432 merge_tool_trust_exit_code
="$(git config --bool mergetool.$merge_tool.trustExitCode || echo false)"
439 if test $# -eq 0 ; then
440 files
=`git ls-files -u | sed -e 's/^[^ ]* //' | sort -u`
441 if test -z "$files" ; then
442 echo "No files need merging"
445 echo Merging the files
: "$files"
447 sed -e 's/^[^ ]* //' |
451 if test $last_status -ne 0; then
452 prompt_after_failed_merge
< /dev
/tty ||
exit 1
455 merge_file
"$i" < /dev
/tty
> /dev
/tty
457 if test $last_status -ne 0; then
462 while test $# -gt 0; do
463 if test $last_status -ne 0; then
464 prompt_after_failed_merge ||
exit 1
469 if test $last_status -ne 0; then