Permalink
Cannot retrieve contributors at this time
Switch branches/tags
v0.14.2
v0.14.2rc2
v0.14.2rc1
v0.14.1
v0.14.1rc2
v0.14.1rc1
v0.14.0
v0.14.0rc3
v0.14.0rc2
v0.14.0rc1
v0.13.2
v0.13.2rc1
v0.13.1
v0.13.1rc3
v0.13.1rc2
v0.13.1rc1
v0.13.0
v0.13.0rc3
v0.13.0rc2
v0.13.0rc1
v0.12.1
v0.12.1rc2
v0.12.1rc1
v0.12.0
v0.12.0rc5
v0.12.0rc4
v0.12.0rc3
v0.12.0rc2
v0.12.0rc1
v0.11.3
v0.11.2
v0.11.2rc1
v0.11.1
v0.11.1rc2
v0.11.1rc1
v0.11.0
v0.11.0rc3
v0.11.0rc2
v0.11.0rc1
v0.10.5
v0.10.4
v0.10.4rc1
v0.10.3
v0.10.3rc2
v0.10.3rc1
v0.10.2
v0.10.2rc1
v0.10.1
v0.10.1rc3
v0.10.1rc2
v0.10.1rc1
v0.10.0
v0.10.0rc4
v0.10.0rc3
v0.10.0rc2
v0.10.0rc1
v0.9.5
v0.9.5rc2
v0.9.5rc1
v0.9.4
v0.9.3
v0.9.3rc2
v0.9.3rc1
v0.9.2.1
v0.9.2
v0.9.2rc2
v0.9.2rc1
v0.9.1
v0.9.0
v0.9.0rc3
v0.9.0rc2
v0.9.0rc1
v0.8.6
v0.8.6rc1
v0.8.5
v0.8.4
v0.8.4rc2
v0.8.3
v0.8.2
v0.8.2rc3
v0.8.2rc2
v0.8.2rc1
v0.8.1
v0.8.0
v0.8.0rc1
v0.7.2
v0.7.2rc2
v0.7.1
v0.7.1rc1
v0.7.0
v0.7.0rc3
v0.7.0rc2
v0.7.0rc1
v0.6.3
v0.6.3rc1
v0.6.2.2
v0.6.2.1
v0.6.2
v0.6.1
v0.6.1rc2
Nothing to show
Fetching contributors…
| #!/bin/bash | |
| # Copyright (c) 2014-2015 The Bitcoin Core developers | |
| # Distributed under the MIT software license, see the accompanying | |
| # file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
| if ! [[ "$2" =~ ^(git@)?(www.)?github.com(:|/)bitcoin/bitcoin(.git)?$ ]]; then | |
| exit 0 | |
| fi | |
| while read LINE; do | |
| set -- A $LINE | |
| if [ "$4" != "refs/heads/master" ]; then | |
| continue | |
| fi | |
| if ! ./contrib/verify-commits/verify-commits.sh $3 > /dev/null 2>&1; then | |
| echo "ERROR: A commit is not signed, can't push" | |
| ./contrib/verify-commits/verify-commits.sh | |
| exit 1 | |
| fi | |
| done < /dev/stdin |