summaryrefslogtreecommitdiffhomepage
path: root/misc/git_hook/git-hook.go
blob: 2cf3ff421ccdfef8aaaa77712aca95d66dc47ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause

// The git-hook command is Tailscale's git hook binary, built and
// installed under .git/hooks/ts-git-hook-bin by the launcher at
// .git/hooks/ts-git-hook. misc/install-git-hooks.go writes the initial
// launcher; subsequent HOOK_VERSION bumps trigger self-rebuilds.
//
// # Adding your own hooks
//
// To add your own hook alongside one we already hook, create an executable
// file .git/hooks/<hook-name>.local (e.g. pre-commit.local). It runs after
// the built-in hook succeeds.
package main

import (
	"fmt"
	"log"
	"os"
	"strings"

	"tailscale.com/misc/git_hook/githook"
)

var pushRemotes = []string{
	"git@github.com:tailscale/tailscale",
	"git@github.com:tailscale/tailscale.git",
	"https://github.com/tailscale/tailscale",
	"https://github.com/tailscale/tailscale.git",
}

// hooks are the hook names this binary handles. Used by install to
// write per-hook wrappers; must stay in sync with the dispatcher below.
var hooks = []string{"pre-commit", "commit-msg", "pre-push"}

func main() {
	log.SetFlags(0)
	if len(os.Args) < 2 {
		return
	}
	cmd, args := os.Args[1], os.Args[2:]

	var err error
	switch cmd {
	case "version":
		fmt.Print(strings.TrimSpace(githook.HookVersion) + ":0")
	case "install":
		err = githook.WriteHooks(hooks)
	case "pre-commit":
		err = githook.CheckForbiddenMarkers()
	case "commit-msg":
		err = githook.AddChangeID(args)
	case "pre-push":
		err = githook.CheckGoModReplaces(args, pushRemotes, nil)
	}
	if err != nil {
		log.Fatalf("git-hook: %v: %v", cmd, err)
	}
	if err := githook.RunLocalHook(cmd, args); err != nil {
		log.Fatalf("git-hook: %v", err)
	}
}