func NewConfigSubcommand()

in cli/config.go [42:53]


func NewConfigSubcommand() subcommands.Command {
	return &configCmd{
		cmd{
			name:     "config",
			synopsis: "configure the credential helper",
		},
		// Because only specified flags are iterated by FlagSet.Visit,
		// these values will always be explicitly set by the user if visited.
		"unused",
		false,
	}
}