git-lfs/commands/command_version.go
2016-08-10 09:33:25 -06:00

31 lines
505 B
Go

package commands
import (
"github.com/github/git-lfs/httputil"
"github.com/spf13/cobra"
)
var (
lovesComics bool
)
func versionCommand(cmd *cobra.Command, args []string) {
Print(httputil.UserAgent)
if lovesComics {
Print("Nothing may see Gah Lak Tus and survive!")
}
}
func init() {
RegisterSubcommand(func() *cobra.Command {
cmd := &cobra.Command{
Use: "version",
Run: versionCommand,
}
cmd.Flags().BoolVarP(&lovesComics, "comics", "c", false, "easter egg")
return cmd
})
}