Alias git
para um script que você vai escrever:
$ alias git=mygit
... que mora em seu PATH
em algum lugar e se parece com isso:
#!/bin/sh
if [ "$1" = "push" ]
then
/bin/echo -n "Enter 'yes i am sure.' to confirm: "
read answer
if [ "$answer" != "yes i am sure." ]
then
echo So indecisive...
exit 1
fi
fi
git "$@"