This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# uncomment following if using update hook script | |
# $refname = ARGV[0] | |
# $oldrev = ARGV[1] | |
# $newrev = ARGV[2] | |
# pre-receive hook script get these values at STDIN | |
$input = STDIN.gets | |
inputs = $input.split(' ') |
OlderNewer