blob: ce285acdcf5ff5b67f4c15128a0696e9fa5409d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package main
var argv args
type args struct {
RepoPath string `arg:"--repo" default:"./" help:"path to the .git repo"`
Hostname string `arg:"--hostname" help:"hostname to use"`
Refs bool `arg:"--refs" help:"list the git ref hashes"`
Tag string `arg:"--tag" help:"what tag name to walk"`
}
|