git/KO
Junio C Hamano 32a1e64777 Adjust the support scripts to "git binary directory" change.
Luckily, as long as you use "git" wrapper, you are forward/backward
compatible.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-11-06 01:55:31 -08:00

16 lines
417 B
Bash
Executable File

#!/bin/sh
#
# Not for general consumption; a script I used to make sure
# I do not accidentally push a rewound master to public.
git fetch ko
mb=$(git merge-base ko-master master)
h=$(git rev-parse $mb ko-master | sort -u | wc -l)
if test "$h" != 1
then
echo "OOOOOPPPPPPPPPPPPPPSSS! master is not ko-master fast forward."
fi
git show-branch ko-master master
git show-branch ko-maint maint
git show-branch ko-pu pu