2005-04-18 21:15:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2005-08-23 06:57:59 +02:00
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
# Fetch one or more remote refs and merge it/them into the current HEAD.
|
|
|
|
|
2005-12-13 23:30:31 +01:00
|
|
|
USAGE='[-n | --no-summary] [--no-commit] [-s strategy]... [<fetch-options>] <repo> <head>...'
|
|
|
|
LONG_USAGE='Fetch one or more remote refs and merge it/them into the current HEAD.'
|
2005-11-24 09:12:11 +01:00
|
|
|
. git-sh-setup
|
2005-08-26 03:15:32 +02:00
|
|
|
|
2005-11-02 04:30:11 +01:00
|
|
|
strategy_args= no_summary= no_commit=
|
2005-09-26 04:43:51 +02:00
|
|
|
while case "$#,$1" in 0) break ;; *,-*) ;; *) break ;; esac
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\
|
|
|
|
--no-summa|--no-summar|--no-summary)
|
|
|
|
no_summary=-n ;;
|
2005-11-02 04:30:11 +01:00
|
|
|
--no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit)
|
|
|
|
no_commit=--no-commit ;;
|
2005-09-26 04:43:51 +02:00
|
|
|
-s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
|
|
|
|
--strateg=*|--strategy=*|\
|
|
|
|
-s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
|
|
|
|
case "$#,$1" in
|
|
|
|
*,*=*)
|
|
|
|
strategy=`expr "$1" : '-[^=]*=\(.*\)'` ;;
|
|
|
|
1,*)
|
|
|
|
usage ;;
|
|
|
|
*)
|
|
|
|
strategy="$2"
|
|
|
|
shift ;;
|
|
|
|
esac
|
|
|
|
strategy_args="${strategy_args}-s $strategy "
|
|
|
|
;;
|
2005-11-07 06:30:56 +01:00
|
|
|
-h|--h|--he|--hel|--help)
|
|
|
|
usage
|
|
|
|
;;
|
2005-09-26 04:43:51 +02:00
|
|
|
-*)
|
2005-10-04 00:45:44 +02:00
|
|
|
# Pass thru anything that is meant for fetch.
|
|
|
|
break
|
2005-09-26 04:43:51 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2005-09-28 03:14:27 +02:00
|
|
|
orig_head=$(git-rev-parse --verify HEAD) || die "Pulling into a black hole?"
|
2005-09-08 02:26:23 +02:00
|
|
|
git-fetch --update-head-ok "$@" || exit 1
|
2005-08-26 03:15:32 +02:00
|
|
|
|
2005-09-28 03:14:27 +02:00
|
|
|
curr_head=$(git-rev-parse --verify HEAD)
|
2005-08-26 03:15:32 +02:00
|
|
|
if test "$curr_head" != "$orig_head"
|
|
|
|
then
|
|
|
|
# The fetch involved updating the current branch.
|
|
|
|
|
|
|
|
# The working tree and the index file is still based on the
|
|
|
|
# $orig_head commit, but we are merging into $curr_head.
|
|
|
|
# First update the working tree to match $curr_head.
|
|
|
|
|
|
|
|
echo >&2 "Warning: fetch updated the current branch head."
|
|
|
|
echo >&2 "Warning: fast forwarding your working tree."
|
|
|
|
git-read-tree -u -m "$orig_head" "$curr_head" ||
|
|
|
|
die "You need to first update your working tree."
|
|
|
|
fi
|
|
|
|
|
2005-09-26 07:54:23 +02:00
|
|
|
merge_head=$(sed -e '/ not-for-merge /d' \
|
|
|
|
-e 's/ .*//' "$GIT_DIR"/FETCH_HEAD | \
|
|
|
|
tr '\012' ' ')
|
2005-08-20 11:57:26 +02:00
|
|
|
|
|
|
|
case "$merge_head" in
|
2005-08-23 06:57:59 +02:00
|
|
|
'')
|
|
|
|
echo >&2 "No changes."
|
|
|
|
exit 0
|
|
|
|
;;
|
2005-09-26 04:43:51 +02:00
|
|
|
?*' '?*)
|
2006-03-18 11:07:59 +01:00
|
|
|
var=`git-repo-config --get pull.octopus`
|
2006-03-15 23:51:41 +01:00
|
|
|
if test -n "$var"
|
2005-11-08 11:00:31 +01:00
|
|
|
then
|
2006-02-11 21:39:11 +01:00
|
|
|
strategy_default_args="-s $var"
|
2005-11-08 11:00:31 +01:00
|
|
|
fi
|
2005-09-26 04:43:51 +02:00
|
|
|
;;
|
|
|
|
*)
|
2006-03-18 11:07:59 +01:00
|
|
|
var=`git-repo-config --get pull.twohead`
|
2006-03-15 23:51:41 +01:00
|
|
|
if test -n "$var"
|
|
|
|
then
|
2006-02-11 21:39:11 +01:00
|
|
|
strategy_default_args="-s $var"
|
2005-11-08 11:00:31 +01:00
|
|
|
fi
|
2005-09-26 04:43:51 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$strategy_args" in
|
|
|
|
'')
|
|
|
|
strategy_args=$strategy_default_args
|
2005-09-21 23:01:56 +02:00
|
|
|
;;
|
2005-08-20 11:57:26 +02:00
|
|
|
esac
|
|
|
|
|
2005-09-22 09:55:22 +02:00
|
|
|
merge_name=$(git-fmt-merge-msg <"$GIT_DIR/FETCH_HEAD")
|
2005-11-02 04:30:11 +01:00
|
|
|
git-merge $no_summary $no_commit $strategy_args "$merge_name" HEAD $merge_head
|