Sha256: 4b1119e1e13a212571976f4aee77847cdbd40978546d6273a557e238981a40d1

Contents?: true

Size: 1.32 KB

Versions: 120

Compression:

Stored size: 1.32 KB

Contents

#!/bin/sh

# An example hook script to verify what is about to be pushed.  Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed.  If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
#   <local ref> <local sha1> <remote ref> <remote sha1>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).

remote="$1"
url="$2"

z40=0000000000000000000000000000000000000000

while read local_ref local_sha remote_ref remote_sha
do
	if [ "$local_sha" = $z40 ]
	then
		# Handle delete
		:
	else
		if [ "$remote_sha" = $z40 ]
		then
			# New branch, examine all commits
			range="$local_sha"
		else
			# Update to existing branch, examine new commits
			range="$remote_sha..$local_sha"
		fi

		# Check for WIP commit
		commit=`git rev-list -n 1 --grep '^WIP' "$range"`
		if [ -n "$commit" ]
		then
			echo >&2 "Found WIP commit in $local_ref, not pushing"
			exit 1
		fi
	fi
done

exit 0

Version data entries

120 entries across 81 versions & 17 rubygems

Version Path
vagrant-unbundled-2.0.4.0 vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-push.sample
image_limit_resize-0.1.0 hooks/pre-push.sample
vagrant-unbundled-2.0.3.0 vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/hooks/pre-push.sample
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
vagrant-unbundled-2.0.1.0 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
vagrant-unbundled-2.0.0.1 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
vagrant-unbundled-1.9.8.1 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
vagrant-unbundled-1.9.7.1 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
ssstats-0.2.1 ./.git/hooks/pre-push.sample
tdiary-5.0.5 vendor/bundle/cache/bundler/git/tdiary-contrib-9ab75deb2f5c1d4ed03ad541a92a9187d5f2560f/hooks/pre-push.sample
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/cache/bundler/git/tdiary-io-mongodb-bb656d137ce87a3aab1f6e0d4b23de1368d87710/hooks/pre-push.sample
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/cache/bundler/git/tdiary-contrib-9ab75deb2f5c1d4ed03ad541a92a9187d5f2560f/hooks/pre-push.sample
tdiary-5.0.5 vendor/bundle/cache/bundler/git/tdiary-io-mongodb-bb656d137ce87a3aab1f6e0d4b23de1368d87710/hooks/pre-push.sample
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-push.sample
captain_hoog-2.0.0 spec/fixtures/neverland.git/hooks/pre-push.sample
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/cache/bundler/git/enju_library-a37fe068d1f6e0b90a5c6f12b492fe8ecb212b67/hooks/pre-push.sample
danger-linear_history-0.0.2 spec/fixtures/nonlinear/hooks/pre-push.sample
danger-linear_history-0.0.2 spec/fixtures/linear/hooks/pre-push.sample
danger-linear_history-0.0.1 spec/fixtures/nonlinear/hooks/pre-push.sample