2007-03-06 06:05:16 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# This program resolves merge conflicts in git
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 Theodore Y. Ts'o
|
|
|
|
#
|
|
|
|
# This file is licensed under the GPL v2, or a later version
|
2007-06-06 06:24:19 +02:00
|
|
|
# at the discretion of Junio C Hamano.
|
2007-03-06 06:05:16 +01:00
|
|
|
#
|
|
|
|
|
2012-07-23 23:16:12 +02:00
|
|
|
USAGE='[--tool=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...'
|
2007-03-06 06:05:16 +01:00
|
|
|
SUBDIRECTORY_OK=Yes
|
2007-11-06 10:50:02 +01:00
|
|
|
OPTIONS_SPEC=
|
2009-04-08 09:17:20 +02:00
|
|
|
TOOL_MODE=merge
|
2007-03-06 06:05:16 +01:00
|
|
|
. git-sh-setup
|
2009-04-08 09:17:20 +02:00
|
|
|
. git-mergetool--lib
|
2007-03-06 06:05:16 +01:00
|
|
|
require_work_tree
|
|
|
|
|
|
|
|
# Returns true if the mode reflects a symlink
|
2007-03-29 12:55:11 +02:00
|
|
|
is_symlink () {
|
2012-08-23 07:33:15 +02:00
|
|
|
test "$1" = 120000
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
is_submodule () {
|
2012-08-23 07:33:15 +02:00
|
|
|
test "$1" = 160000
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
}
|
|
|
|
|
2007-03-29 12:55:11 +02:00
|
|
|
local_present () {
|
2012-08-23 07:33:15 +02:00
|
|
|
test -n "$local_mode"
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
2007-03-29 12:55:11 +02:00
|
|
|
remote_present () {
|
2012-08-23 07:33:15 +02:00
|
|
|
test -n "$remote_mode"
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
2007-03-29 12:55:11 +02:00
|
|
|
base_present () {
|
2012-08-23 07:33:15 +02:00
|
|
|
test -n "$base_mode"
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup_temp_files () {
|
2012-08-23 07:33:15 +02:00
|
|
|
if test "$1" = --save-backup
|
|
|
|
then
|
|
|
|
rm -rf -- "$MERGED.orig"
|
|
|
|
test -e "$BACKUP" && mv -- "$BACKUP" "$MERGED.orig"
|
|
|
|
rm -f -- "$LOCAL" "$REMOTE" "$BASE"
|
|
|
|
else
|
|
|
|
rm -f -- "$LOCAL" "$REMOTE" "$BASE" "$BACKUP"
|
|
|
|
fi
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
2007-03-29 12:55:11 +02:00
|
|
|
describe_file () {
|
2012-08-23 07:33:15 +02:00
|
|
|
mode="$1"
|
|
|
|
branch="$2"
|
|
|
|
file="$3"
|
|
|
|
|
|
|
|
printf " {%s}: " "$branch"
|
|
|
|
if test -z "$mode"
|
|
|
|
then
|
|
|
|
echo "deleted"
|
|
|
|
elif is_symlink "$mode"
|
|
|
|
then
|
|
|
|
echo "a symbolic link -> '$(cat "$file")'"
|
|
|
|
elif is_submodule "$mode"
|
|
|
|
then
|
|
|
|
echo "submodule commit $file"
|
|
|
|
elif base_present
|
|
|
|
then
|
|
|
|
echo "modified file"
|
2007-03-06 06:05:16 +01:00
|
|
|
else
|
2012-08-23 07:33:15 +02:00
|
|
|
echo "created file"
|
2007-03-06 06:05:16 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve_symlink_merge () {
|
2012-08-23 07:33:15 +02:00
|
|
|
while true
|
|
|
|
do
|
|
|
|
printf "Use (l)ocal or (r)emote, or (a)bort? "
|
|
|
|
read ans || return 1
|
|
|
|
case "$ans" in
|
|
|
|
[lL]*)
|
|
|
|
git checkout-index -f --stage=2 -- "$MERGED"
|
|
|
|
git add -- "$MERGED"
|
|
|
|
cleanup_temp_files --save-backup
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[rR]*)
|
|
|
|
git checkout-index -f --stage=3 -- "$MERGED"
|
|
|
|
git add -- "$MERGED"
|
|
|
|
cleanup_temp_files --save-backup
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[aA]*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
2007-03-06 06:05:16 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve_deleted_merge () {
|
2012-08-23 07:33:15 +02:00
|
|
|
while true
|
|
|
|
do
|
|
|
|
if base_present
|
|
|
|
then
|
|
|
|
printf "Use (m)odified or (d)eleted file, or (a)bort? "
|
|
|
|
else
|
|
|
|
printf "Use (c)reated or (d)eleted file, or (a)bort? "
|
|
|
|
fi
|
|
|
|
read ans || return 1
|
|
|
|
case "$ans" in
|
|
|
|
[mMcC]*)
|
|
|
|
git add -- "$MERGED"
|
|
|
|
cleanup_temp_files --save-backup
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[dD]*)
|
|
|
|
git rm -- "$MERGED" > /dev/null
|
|
|
|
cleanup_temp_files
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[aA]*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
2007-03-06 06:05:16 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
resolve_submodule_merge () {
|
2012-08-23 07:33:15 +02:00
|
|
|
while true
|
|
|
|
do
|
|
|
|
printf "Use (l)ocal or (r)emote, or (a)bort? "
|
|
|
|
read ans || return 1
|
|
|
|
case "$ans" in
|
|
|
|
[lL]*)
|
|
|
|
if ! local_present
|
|
|
|
then
|
|
|
|
if test -n "$(git ls-tree HEAD -- "$MERGED")"
|
|
|
|
then
|
|
|
|
# Local isn't present, but it's a subdirectory
|
|
|
|
git ls-tree --full-name -r HEAD -- "$MERGED" |
|
|
|
|
git update-index --index-info || exit $?
|
|
|
|
else
|
|
|
|
test -e "$MERGED" && mv -- "$MERGED" "$BACKUP"
|
|
|
|
git update-index --force-remove "$MERGED"
|
|
|
|
cleanup_temp_files --save-backup
|
|
|
|
fi
|
|
|
|
elif is_submodule "$local_mode"
|
|
|
|
then
|
|
|
|
stage_submodule "$MERGED" "$local_sha1"
|
|
|
|
else
|
|
|
|
git checkout-index -f --stage=2 -- "$MERGED"
|
|
|
|
git add -- "$MERGED"
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[rR]*)
|
|
|
|
if ! remote_present
|
|
|
|
then
|
|
|
|
if test -n "$(git ls-tree MERGE_HEAD -- "$MERGED")"
|
|
|
|
then
|
|
|
|
# Remote isn't present, but it's a subdirectory
|
|
|
|
git ls-tree --full-name -r MERGE_HEAD -- "$MERGED" |
|
|
|
|
git update-index --index-info || exit $?
|
|
|
|
else
|
|
|
|
test -e "$MERGED" && mv -- "$MERGED" "$BACKUP"
|
|
|
|
git update-index --force-remove "$MERGED"
|
|
|
|
fi
|
|
|
|
elif is_submodule "$remote_mode"
|
|
|
|
then
|
|
|
|
! is_submodule "$local_mode" &&
|
|
|
|
test -e "$MERGED" &&
|
|
|
|
mv -- "$MERGED" "$BACKUP"
|
|
|
|
stage_submodule "$MERGED" "$remote_sha1"
|
|
|
|
else
|
|
|
|
test -e "$MERGED" && mv -- "$MERGED" "$BACKUP"
|
|
|
|
git checkout-index -f --stage=3 -- "$MERGED"
|
|
|
|
git add -- "$MERGED"
|
|
|
|
fi
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
cleanup_temp_files --save-backup
|
2012-08-23 07:33:15 +02:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[aA]*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
stage_submodule () {
|
2012-08-23 07:33:15 +02:00
|
|
|
path="$1"
|
|
|
|
submodule_sha1="$2"
|
|
|
|
mkdir -p "$path" ||
|
|
|
|
die "fatal: unable to create directory for module at $path"
|
|
|
|
# Find $path relative to work tree
|
|
|
|
work_tree_root=$(cd_to_toplevel && pwd)
|
|
|
|
work_rel_path=$(cd "$path" &&
|
|
|
|
GIT_WORK_TREE="${work_tree_root}" git rev-parse --show-prefix
|
|
|
|
)
|
|
|
|
test -n "$work_rel_path" ||
|
|
|
|
die "fatal: unable to get path of module $path relative to work tree"
|
|
|
|
git update-index --add --replace --cacheinfo 160000 "$submodule_sha1" "${work_rel_path%/}" || die
|
mergetool: Teach about submodules
When the index has conflicted submodules, mergetool used to mildly
clobber the module, renaming it to mymodule.BACKUP.nnnn, then failing to
copy it non-recursively.
Recognize submodules and offer a resolution instead:
Submodule merge conflict for 'Shared':
{local}: submodule commit ad9f12e3e6205381bf2163a793d1e596a9e211d0
{remote}: submodule commit f5893fb70ec5646efcd9aa643c5136753ac89253
Use (l)ocal or (r)emote, or (a)bort?
Selecting a commit will stage it, but not update the submodule (as git
does had there been no conflict). Type changes are also supported,
should the path be a submodule on one side, and a file, symlink,
directory, or deleted on the other.
Signed-off-by: Jonathon Mah <me@JonathonMah.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-04-13 12:00:48 +02:00
|
|
|
}
|
|
|
|
|
2009-01-21 23:57:48 +01:00
|
|
|
checkout_staged_file () {
|
2012-08-23 07:33:15 +02:00
|
|
|
tmpfile=$(expr \
|
|
|
|
"$(git checkout-index --temp --stage="$1" "$2" 2>/dev/null)" \
|
|
|
|
: '\([^ ]*\) ')
|
|
|
|
|
|
|
|
if test $? -eq 0 -a -n "$tmpfile"
|
|
|
|
then
|
|
|
|
mv -- "$(git rev-parse --show-cdup)$tmpfile" "$3"
|
|
|
|
else
|
|
|
|
>"$3"
|
|
|
|
fi
|
2009-01-21 23:57:48 +01:00
|
|
|
}
|
|
|
|
|
2007-03-06 06:05:16 +01:00
|
|
|
merge_file () {
|
2012-08-23 07:33:15 +02:00
|
|
|
MERGED="$1"
|
2007-03-06 06:05:16 +01:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
f=$(git ls-files -u -- "$MERGED")
|
|
|
|
if test -z "$f"
|
|
|
|
then
|
|
|
|
if test ! -f "$MERGED"
|
|
|
|
then
|
|
|
|
echo "$MERGED: file not found"
|
|
|
|
else
|
|
|
|
echo "$MERGED: file does not need merging"
|
|
|
|
fi
|
|
|
|
return 1
|
2007-03-28 00:00:03 +02:00
|
|
|
fi
|
2007-03-06 06:05:16 +01:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
ext="$$$(expr "$MERGED" : '.*\(\.[^/]*\)$')"
|
|
|
|
BACKUP="./$MERGED.BACKUP.$ext"
|
|
|
|
LOCAL="./$MERGED.LOCAL.$ext"
|
|
|
|
REMOTE="./$MERGED.REMOTE.$ext"
|
|
|
|
BASE="./$MERGED.BASE.$ext"
|
|
|
|
|
|
|
|
base_mode=$(git ls-files -u -- "$MERGED" | awk '{if ($3==1) print $1;}')
|
|
|
|
local_mode=$(git ls-files -u -- "$MERGED" | awk '{if ($3==2) print $1;}')
|
|
|
|
remote_mode=$(git ls-files -u -- "$MERGED" | awk '{if ($3==3) print $1;}')
|
|
|
|
|
|
|
|
if is_submodule "$local_mode" || is_submodule "$remote_mode"
|
|
|
|
then
|
|
|
|
echo "Submodule merge conflict for '$MERGED':"
|
|
|
|
local_sha1=$(git ls-files -u -- "$MERGED" | awk '{if ($3==2) print $2;}')
|
|
|
|
remote_sha1=$(git ls-files -u -- "$MERGED" | awk '{if ($3==3) print $2;}')
|
|
|
|
describe_file "$local_mode" "local" "$local_sha1"
|
|
|
|
describe_file "$remote_mode" "remote" "$remote_sha1"
|
|
|
|
resolve_submodule_merge
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
mv -- "$MERGED" "$BACKUP"
|
|
|
|
cp -- "$BACKUP" "$MERGED"
|
|
|
|
|
|
|
|
checkout_staged_file 1 "$MERGED" "$BASE"
|
|
|
|
checkout_staged_file 2 "$MERGED" "$LOCAL"
|
|
|
|
checkout_staged_file 3 "$MERGED" "$REMOTE"
|
|
|
|
|
|
|
|
if test -z "$local_mode" -o -z "$remote_mode"
|
|
|
|
then
|
|
|
|
echo "Deleted merge conflict for '$MERGED':"
|
|
|
|
describe_file "$local_mode" "local" "$LOCAL"
|
|
|
|
describe_file "$remote_mode" "remote" "$REMOTE"
|
|
|
|
resolve_deleted_merge
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_symlink "$local_mode" || is_symlink "$remote_mode"
|
|
|
|
then
|
|
|
|
echo "Symbolic link merge conflict for '$MERGED':"
|
|
|
|
describe_file "$local_mode" "local" "$LOCAL"
|
|
|
|
describe_file "$remote_mode" "remote" "$REMOTE"
|
|
|
|
resolve_symlink_merge
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Normal merge conflict for '$MERGED':"
|
2007-03-06 06:05:16 +01:00
|
|
|
describe_file "$local_mode" "local" "$LOCAL"
|
|
|
|
describe_file "$remote_mode" "remote" "$REMOTE"
|
2012-08-23 07:33:15 +02:00
|
|
|
if "$prompt" = true
|
|
|
|
then
|
|
|
|
printf "Hit return to start merge resolution tool (%s): " "$merge_tool"
|
|
|
|
read ans || return 1
|
2008-12-12 22:48:41 +01:00
|
|
|
fi
|
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if base_present
|
|
|
|
then
|
|
|
|
present=true
|
|
|
|
else
|
|
|
|
present=false
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! run_merge_tool "$merge_tool" "$present"
|
|
|
|
then
|
|
|
|
echo "merge of $MERGED failed" 1>&2
|
|
|
|
mv -- "$BACKUP" "$MERGED"
|
|
|
|
|
|
|
|
if test "$merge_keep_temporaries" = "false"
|
|
|
|
then
|
|
|
|
cleanup_temp_files
|
|
|
|
fi
|
2008-02-22 00:30:02 +01:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
return 1
|
|
|
|
fi
|
2008-02-22 00:30:02 +01:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if test "$merge_keep_backup" = "true"
|
|
|
|
then
|
|
|
|
mv -- "$BACKUP" "$MERGED.orig"
|
|
|
|
else
|
|
|
|
rm -- "$BACKUP"
|
|
|
|
fi
|
|
|
|
|
|
|
|
git add -- "$MERGED"
|
|
|
|
cleanup_temp_files
|
|
|
|
return 0
|
2007-03-06 06:05:16 +01:00
|
|
|
}
|
|
|
|
|
2012-07-23 23:16:12 +02:00
|
|
|
show_tool_help () {
|
|
|
|
TOOL_MODE=merge
|
|
|
|
list_merge_tool_candidates
|
|
|
|
unavailable= available= LF='
|
|
|
|
'
|
|
|
|
for i in $tools
|
|
|
|
do
|
|
|
|
merge_tool_path=$(translate_merge_tool_path "$i")
|
|
|
|
if type "$merge_tool_path" >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
available="$available$i$LF"
|
|
|
|
else
|
|
|
|
unavailable="$unavailable$i$LF"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if test -n "$available"
|
|
|
|
then
|
|
|
|
echo "'git mergetool --tool=<tool>' may be set to one of the following:"
|
|
|
|
echo "$available" | sort | sed -e 's/^/ /'
|
|
|
|
else
|
|
|
|
echo "No suitable tool for 'git mergetool --tool=<tool>' found."
|
|
|
|
fi
|
|
|
|
if test -n "$unavailable"
|
|
|
|
then
|
|
|
|
echo
|
|
|
|
echo 'The following tools are valid, but not currently available:'
|
|
|
|
echo "$unavailable" | sort | sed -e 's/^/ /'
|
|
|
|
fi
|
|
|
|
if test -n "$unavailable$available"
|
|
|
|
then
|
|
|
|
echo
|
|
|
|
echo "Some of the tools listed above only work in a windowed"
|
|
|
|
echo "environment. If run in a terminal-only session, they will fail."
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2008-11-13 13:41:14 +01:00
|
|
|
prompt=$(git config --bool mergetool.prompt || echo true)
|
|
|
|
|
2007-09-23 22:42:08 +02:00
|
|
|
while test $# != 0
|
2007-03-06 06:05:16 +01:00
|
|
|
do
|
2012-08-23 07:33:15 +02:00
|
|
|
case "$1" in
|
2012-07-23 23:16:12 +02:00
|
|
|
--tool-help)
|
|
|
|
show_tool_help
|
|
|
|
;;
|
2007-03-06 06:05:16 +01:00
|
|
|
-t|--tool*)
|
2012-08-23 07:33:15 +02:00
|
|
|
case "$#,$1" in
|
2007-03-06 06:05:16 +01:00
|
|
|
*,*=*)
|
2012-08-23 07:33:15 +02:00
|
|
|
merge_tool=$(expr "z$1" : 'z-[^=]*=\(.*\)')
|
|
|
|
;;
|
2007-03-06 06:05:16 +01:00
|
|
|
1,*)
|
2012-08-23 07:33:15 +02:00
|
|
|
usage ;;
|
2007-03-06 06:05:16 +01:00
|
|
|
*)
|
2012-08-23 07:33:15 +02:00
|
|
|
merge_tool="$2"
|
|
|
|
shift ;;
|
|
|
|
esac
|
|
|
|
;;
|
2008-11-13 13:41:14 +01:00
|
|
|
-y|--no-prompt)
|
2012-08-23 07:33:15 +02:00
|
|
|
prompt=false
|
|
|
|
;;
|
2008-11-13 13:41:14 +01:00
|
|
|
--prompt)
|
2012-08-23 07:33:15 +02:00
|
|
|
prompt=true
|
|
|
|
;;
|
2007-03-06 06:05:16 +01:00
|
|
|
--)
|
2012-08-23 07:33:15 +02:00
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
2007-03-06 06:05:16 +01:00
|
|
|
-*)
|
2012-08-23 07:33:15 +02:00
|
|
|
usage
|
2008-12-12 22:48:40 +01:00
|
|
|
;;
|
2012-08-23 07:33:15 +02:00
|
|
|
*)
|
|
|
|
break
|
2008-12-12 22:48:40 +01:00
|
|
|
;;
|
|
|
|
esac
|
2012-08-23 07:33:15 +02:00
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
prompt_after_failed_merge () {
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
printf "Continue merging other unresolved paths (y/n) ? "
|
|
|
|
read ans || return 1
|
|
|
|
case "$ans" in
|
|
|
|
[yY]*)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[nN]*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2008-12-12 22:48:40 +01:00
|
|
|
}
|
2007-10-17 19:16:11 +02:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if test -z "$merge_tool"
|
|
|
|
then
|
|
|
|
merge_tool=$(get_merge_tool "$merge_tool") || exit
|
2009-04-12 05:41:56 +02:00
|
|
|
fi
|
2009-04-10 21:33:57 +02:00
|
|
|
merge_keep_backup="$(git config --bool mergetool.keepBackup || echo true)"
|
2009-04-08 09:17:20 +02:00
|
|
|
merge_keep_temporaries="$(git config --bool mergetool.keepTemporaries || echo false)"
|
2007-03-06 06:05:16 +01:00
|
|
|
|
2008-12-12 22:48:40 +01:00
|
|
|
last_status=0
|
|
|
|
rollup_status=0
|
2011-09-16 04:12:10 +02:00
|
|
|
files=
|
2007-03-06 06:05:16 +01:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if test $# -eq 0
|
|
|
|
then
|
|
|
|
cd_to_toplevel
|
2010-08-17 11:22:46 +02:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if test -e "$GIT_DIR/MERGE_RR"
|
|
|
|
then
|
|
|
|
files=$(git rerere remaining)
|
|
|
|
else
|
|
|
|
files=$(git ls-files -u | sed -e 's/^[^ ]* //' | sort -u)
|
|
|
|
fi
|
2011-09-16 04:12:10 +02:00
|
|
|
else
|
2012-08-23 07:33:15 +02:00
|
|
|
files=$(git ls-files -u -- "$@" | sed -e 's/^[^ ]* //' | sort -u)
|
2011-09-16 04:12:10 +02:00
|
|
|
fi
|
2010-08-20 17:25:09 +02:00
|
|
|
|
2012-08-23 07:33:15 +02:00
|
|
|
if test -z "$files"
|
|
|
|
then
|
|
|
|
echo "No files need merging"
|
|
|
|
exit 0
|
2011-09-16 04:12:10 +02:00
|
|
|
fi
|
2010-08-20 17:25:09 +02:00
|
|
|
|
2011-09-16 04:12:10 +02:00
|
|
|
printf "Merging:\n"
|
|
|
|
printf "$files\n"
|
2010-08-17 11:22:46 +02:00
|
|
|
|
2011-09-16 04:12:10 +02:00
|
|
|
IFS='
|
2011-09-16 22:19:33 +02:00
|
|
|
'
|
|
|
|
for i in $files
|
2011-09-16 04:12:10 +02:00
|
|
|
do
|
2012-08-23 07:33:15 +02:00
|
|
|
if test $last_status -ne 0
|
|
|
|
then
|
|
|
|
prompt_after_failed_merge || exit 1
|
|
|
|
fi
|
|
|
|
printf "\n"
|
|
|
|
merge_file "$i"
|
|
|
|
last_status=$?
|
|
|
|
if test $last_status -ne 0
|
|
|
|
then
|
|
|
|
rollup_status=1
|
|
|
|
fi
|
2011-09-16 04:12:10 +02:00
|
|
|
done
|
2008-12-12 22:48:40 +01:00
|
|
|
|
|
|
|
exit $rollup_status
|