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
|
|
|
|
git-merge --squash
Some people tend to do many little commits on a topic branch,
recording all the trials and errors, and when the topic is
reasonably cooked well, would want to record the net effect of
the series as one commit on top of the mainline, removing the
cruft from the history. The topic is then abandoned or forked
off again from that point at the mainline.
The barebone porcelainish that comes with core git tools does
not officially support such operation, but you can fake it by
using "git pull --no-merge" when such a topic branch is not a
strict superset of the mainline, like this:
git checkout mainline
git pull --no-commit . that-topic-branch
: fix conflicts if any
rm -f .git/MERGE_HEAD
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
This however does not work when the topic branch is a fast
forward of the mainline, because normal "git pull" will never
create a merge commit in such a case, and there is nothing
special --no-commit could do to begin with.
This patch introduces a new option, --squash, to support such a
workflow officially in both fast-forward case and true merge
case. The user-level operation would be the same in both cases:
git checkout mainline
git pull --squash . that-topic-branch
: fix conflicts if any -- naturally, there would be
: no conflict if fast forward.
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
When the current branch is already up-to-date with respect to
the other branch, there truly is nothing to do, so the new
option does not have any effect.
This was brought up in #git IRC channel recently.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-23 10:37:02 +02:00
|
|
|
strategy_args= no_summary= no_commit= squash=
|
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 ;;
|
git-merge --squash
Some people tend to do many little commits on a topic branch,
recording all the trials and errors, and when the topic is
reasonably cooked well, would want to record the net effect of
the series as one commit on top of the mainline, removing the
cruft from the history. The topic is then abandoned or forked
off again from that point at the mainline.
The barebone porcelainish that comes with core git tools does
not officially support such operation, but you can fake it by
using "git pull --no-merge" when such a topic branch is not a
strict superset of the mainline, like this:
git checkout mainline
git pull --no-commit . that-topic-branch
: fix conflicts if any
rm -f .git/MERGE_HEAD
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
This however does not work when the topic branch is a fast
forward of the mainline, because normal "git pull" will never
create a merge commit in such a case, and there is nothing
special --no-commit could do to begin with.
This patch introduces a new option, --squash, to support such a
workflow officially in both fast-forward case and true merge
case. The user-level operation would be the same in both cases:
git checkout mainline
git pull --squash . that-topic-branch
: fix conflicts if any -- naturally, there would be
: no conflict if fast forward.
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
When the current branch is already up-to-date with respect to
the other branch, there truly is nothing to do, so the new
option does not have any effect.
This was brought up in #git IRC channel recently.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-23 10:37:02 +02:00
|
|
|
--sq|--squ|--squa|--squas|--squash)
|
|
|
|
squash=--squash ;;
|
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
|
|
|
|
*,*=*)
|
2006-06-27 18:54:26 +02:00
|
|
|
strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
|
2005-09-26 04:43:51 +02:00
|
|
|
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?"
|
2006-07-11 05:38:35 +02:00
|
|
|
git-fetch --update-head-ok --reflog-action=pull "$@" || 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."
|
2006-03-22 10:09:43 +01:00
|
|
|
echo >&2 "Warning: fast forwarding your working tree from"
|
|
|
|
echo >&2 "Warning: $orig_head commit."
|
|
|
|
git-update-index --refresh 2>/dev/null
|
2005-08-26 03:15:32 +02:00
|
|
|
git-read-tree -u -m "$orig_head" "$curr_head" ||
|
2006-03-22 10:57:11 +01:00
|
|
|
die 'Cannot fast-forward your working tree.
|
|
|
|
After making sure that you saved anything precious from
|
|
|
|
$ git diff '$orig_head'
|
|
|
|
output, run
|
|
|
|
$ git reset --hard
|
|
|
|
to recover.'
|
|
|
|
|
2005-08-26 03:15:32 +02:00
|
|
|
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
|
|
|
|
|
2006-06-24 10:10:27 +02:00
|
|
|
merge_name=$(git-fmt-merge-msg <"$GIT_DIR/FETCH_HEAD") || exit
|
git-merge --squash
Some people tend to do many little commits on a topic branch,
recording all the trials and errors, and when the topic is
reasonably cooked well, would want to record the net effect of
the series as one commit on top of the mainline, removing the
cruft from the history. The topic is then abandoned or forked
off again from that point at the mainline.
The barebone porcelainish that comes with core git tools does
not officially support such operation, but you can fake it by
using "git pull --no-merge" when such a topic branch is not a
strict superset of the mainline, like this:
git checkout mainline
git pull --no-commit . that-topic-branch
: fix conflicts if any
rm -f .git/MERGE_HEAD
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
This however does not work when the topic branch is a fast
forward of the mainline, because normal "git pull" will never
create a merge commit in such a case, and there is nothing
special --no-commit could do to begin with.
This patch introduces a new option, --squash, to support such a
workflow officially in both fast-forward case and true merge
case. The user-level operation would be the same in both cases:
git checkout mainline
git pull --squash . that-topic-branch
: fix conflicts if any -- naturally, there would be
: no conflict if fast forward.
git commit -a -m 'consolidated commit log message'
git branch -f that-topic-branch ;# now fully merged
When the current branch is already up-to-date with respect to
the other branch, there truly is nothing to do, so the new
option does not have any effect.
This was brought up in #git IRC channel recently.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-23 10:37:02 +02:00
|
|
|
git-merge $no_summary $no_commit $squash $strategy_args \
|
|
|
|
"$merge_name" HEAD $merge_head
|