We codify the following different heads (in addition to the main "HEAD", which points to the current branch, of course): - FETCH_HEAD Populated by "git fetch" - ORIG_HEAD The old HEAD before a "git pull/resolve" (successful or not) - LAST_MERGE The HEAD we're currently merging in "git pull/resolve" - MERGE_HEAD The previous head of a unresolved "git pull", which gets committed by a "git commit" after manually resolving the result We used to have "MERGE_HEAD" be populated directly by the fetch, and we removed ORIG_HEAD and LAST_MERGE too aggressively.
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# Copyright (c) 2005 Linus Torvalds
 | 
						|
#
 | 
						|
# Resolve two trees.
 | 
						|
#
 | 
						|
head=$(git-rev-parse --revs-only "$1")
 | 
						|
merge=$(git-rev-parse --revs-only "$2")
 | 
						|
merge_repo="$3"
 | 
						|
 | 
						|
: ${GIT_DIR=.git}
 | 
						|
: ${GIT_OBJECT_DIRECTORY="${SHA1_FILE_DIRECTORY-"$GIT_DIR/objects"}"}
 | 
						|
 | 
						|
dropheads() {
 | 
						|
	rm -f -- "$GIT_DIR/MERGE_HEAD" \
 | 
						|
		"$GIT_DIR/LAST_MERGE" || exit 1
 | 
						|
}
 | 
						|
 | 
						|
#
 | 
						|
# The remote name is just used for the message,
 | 
						|
# but we do want it.
 | 
						|
#
 | 
						|
if [ -z "$head" -o -z "$merge" -o -z "$merge_repo" ]; then
 | 
						|
	echo "git-resolve-script <head> <remote> <merge-repo-name>"
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
dropheads
 | 
						|
echo $head > "$GIT_DIR"/ORIG_HEAD
 | 
						|
echo $merge > "$GIT_DIR"/LAST_MERGE
 | 
						|
 | 
						|
common=$(git-merge-base $head $merge)
 | 
						|
if [ -z "$common" ]; then
 | 
						|
	echo "Unable to find common commit between" $merge $head
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
if [ "$common" == "$merge" ]; then
 | 
						|
	echo "Already up-to-date. Yeeah!"
 | 
						|
	dropheads
 | 
						|
	exit 0
 | 
						|
fi
 | 
						|
if [ "$common" == "$head" ]; then
 | 
						|
	echo "Updating from $head to $merge."
 | 
						|
	git-read-tree -u -m $head $merge || exit 1
 | 
						|
	echo $merge > "$GIT_DIR"/HEAD
 | 
						|
	git-diff-tree -p $head $merge | git-apply --stat
 | 
						|
	dropheads
 | 
						|
	exit 0
 | 
						|
fi
 | 
						|
echo "Trying to merge $merge into $head"
 | 
						|
git-read-tree -u -m $common $head $merge || exit 1
 | 
						|
merge_msg="Merge $merge_repo"
 | 
						|
result_tree=$(git-write-tree  2> /dev/null)
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
	echo "Simple merge failed, trying Automatic merge"
 | 
						|
	git-merge-cache -o git-merge-one-file-script -a
 | 
						|
	if [ $? -ne 0 ]; then
 | 
						|
		echo $merge > "$GIT_DIR"/MERGE_HEAD
 | 
						|
		echo "Automatic merge failed, fix up by hand"
 | 
						|
		exit 1
 | 
						|
	fi
 | 
						|
	result_tree=$(git-write-tree) || exit 1
 | 
						|
fi
 | 
						|
result_commit=$(echo "$merge_msg" | git-commit-tree $result_tree -p $head -p $merge)
 | 
						|
echo "Committed merge $result_commit"
 | 
						|
echo $result_commit > "$GIT_DIR"/HEAD
 | 
						|
git-diff-tree -p $head $result_commit | git-apply --stat
 | 
						|
dropheads
 |