10 lines
267 B
Go
10 lines
267 B
Go
package git
|
|
|
|
import "fmt"
|
|
|
|
// preReceiveHook returns the bytes of a pre-receive hook script
|
|
// that prints m before exiting successfully
|
|
func preReceiveHook(m string) []byte {
|
|
return []byte(fmt.Sprintf("#!C:/Program\\ Files/Git/usr/bin/sh.exe\nprintf '%s'\n", m))
|
|
}
|