fork of go-git with some jj specific features
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.4.1 9 lines 267 B view raw
1package git 2 3import "fmt" 4 5// preReceiveHook returns the bytes of a pre-receive hook script 6// that prints m before exiting successfully 7func preReceiveHook(m string) []byte { 8 return []byte(fmt.Sprintf("#!C:/Program\\ Files/Git/usr/bin/sh.exe\nprintf '%s'\n", m)) 9}