3 # Run this script _after_ making a proposed merge into a copy of
4 # the target branch (e.g. "master") to see if it contains unrelated
5 # merging back from the upstream.
7 F
=`git diff-tree -r --name-only HEAD^ HEAD`
8 echo "The topic modifies these paths:"
9 echo "$F" |
sed -e 's/^/ /'
11 _x40
='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
12 _x40
="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
13 git rev-list
--parents master..HEAD^
2 |
14 sed -ne "/^$_x40 $_x40 $_x40/p" |
15 while read merge first second
18 # First is the previous cvs topic tip, second is what was merged into
19 # it. Does the merge have anything to do with adjust the topic to
22 out
=`git diff-tree --stat "$merge^" "$merge" -- $F`
25 echo "* Nothing to do with the topic" ;;