carapace-bin/completers/git_completer/cmd/verify_commit_generated.go
2020-05-16 23:04:32 +02:00

19 lines
426 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var verify_commitCmd = &cobra.Command{
Use: "verify-commit",
Short: "Check the GPG signature of commits",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
verify_commitCmd.Flags().Bool("raw", false, "print raw gpg status output")
verify_commitCmd.Flags().BoolP("verbose", "v", false, "print commit contents")
rootCmd.AddCommand(verify_commitCmd)
}