show/hide this revision's text 2 code bloat... added message; [made Community Wiki]

Wrap the "git" command in something that eats the push argument. Off the top of my head I wrote this:

~$ cat /usr/local/bin/git
#!/bin/bash

# git wrapper
# prevents pushing to repository

declare -a args
declare msg=''
while [ $# -gt 0 ]
do
    if [ "$1" != 'push' ]; then
        args=( "${args[@]}" "$1" )
    else
        msg="No pushing"
    fi
   shift
done

if [ ${#msg} -gt 0 ]; then
    echo "$msg"
fi
/usr/bin/git "${args[@]}"  

Just be sure to have the wrapped command in your path before the "real" git command.

show/hide this revision's text 1

Wrap the "git" command in something that eats the push argument. Off the top of my head I wrote this:

~$ cat /usr/local/bin/git
#!/bin/bash

declare -a args
while [ $# -gt 0 ]
do
    if [ "$1" != 'push' ]; then
       args=( "${args[@]}" "$1" )
    fi
    shift
done

/usr/bin/git "${args[@]}"

Just be sure to have the wrapped command in your path before the "real" git command.