1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-01 14:57:52 +01:00

Prune out some extra merge commits by comparing their parents correctly.

This commit is contained in:
Avery Pennarun 2009-04-24 21:49:19 -04:00
parent 847e868167
commit 210d083904

View file

@ -168,9 +168,17 @@ merge_msg()
EOF
}
tree_for_commit()
toptree_for_commit()
{
git ls-tree "$1" -- "$dir" |
commit="$1"
git log -1 --pretty=format:'%T' "$commit" -- || exit $?
}
subtree_for_commit()
{
commit="$1"
dir="$2"
git ls-tree "$commit" -- "$dir" |
while read mode type tree name; do
assert [ "$name" = "$dir" ]
echo $tree
@ -185,7 +193,7 @@ tree_changed()
if [ $# -ne 1 ]; then
return 0 # weird parents, consider it changed
else
ptree=$(tree_for_commit $1)
ptree=$(toptree_for_commit $1)
if [ "$ptree" != "$tree" ]; then
return 0 # changed
else
@ -226,7 +234,7 @@ cmd_split()
newparents=$(cache_get $parents)
debug " newparents: $newparents"
tree=$(tree_for_commit $rev)
tree=$(subtree_for_commit $rev "$dir")
debug " tree is: $tree"
[ -z $tree ] && continue
@ -235,7 +243,7 @@ cmd_split()
p="$p -p $parent"
done
if tree_changed $tree $parents; then
if tree_changed $tree $newparents; then
newrev=$(copy_commit $rev $tree "$p") || exit $?
else
newrev="$newparents"