Is it possible to set up a policy on a git repo that disallows lightweight tags from being pushed to it?

link|improve this question

79% accept rate
The update.sample hook that Git automatically installs into new repositories includes this exact functionality (among a few other useful bits). Take a look at $GIT_DIR/hooks/update.sample any of your existing repositories. – Chris Johnsen Jul 21 '11 at 2:57
feedback

1 Answer

The Git hook page mentions:

The default update hook, when enabled — and with hooks.allowunannotated config option unset or set to false — prevents unannotated tags to be pushed.

That references in turn the update.sample Chris Johnsen mentions in the comments.

case "$refname","$newrev_type" in
    refs/tags/*,commit)
        # un-annotated tag
        short_refname=${refname##refs/tags/}
        if [ "$allowunannotated" != "true" ]; then
            echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
            echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
            exit 1
        fi
        ;;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.