git-lfs/commands/command_ext.go

51 lines
884 B
Go
Raw Normal View History

2015-07-10 20:54:06 +00:00
package commands
import (
"fmt"
"github.com/github/git-lfs/config"
"github.com/spf13/cobra"
2015-07-10 20:54:06 +00:00
)
func extCommand(cmd *cobra.Command, args []string) {
printAllExts()
}
func extListCommand(cmd *cobra.Command, args []string) {
n := len(args)
if n == 0 {
printAllExts()
2015-07-24 04:53:36 +00:00
return
}
for _, key := range args {
2016-07-21 22:37:53 +00:00
ext := cfg.Extensions()[key]
2015-07-24 04:53:36 +00:00
printExt(ext)
2015-07-10 20:54:06 +00:00
}
}
func printAllExts() {
2016-07-21 22:37:53 +00:00
extensions, err := cfg.SortedExtensions()
2015-07-10 20:54:06 +00:00
if err != nil {
fmt.Println(err)
return
}
for _, ext := range extensions {
printExt(ext)
}
}
2016-05-13 16:43:04 +00:00
func printExt(ext config.Extension) {
2015-07-10 20:54:06 +00:00
Print("Extension: %s", ext.Name)
Print(" clean = %s", ext.Clean)
Print(" smudge = %s", ext.Smudge)
Print(" priority = %d", ext.Priority)
}
func init() {
RegisterCommand("ext", extCommand, func(cmd *cobra.Command) bool {
cmd.AddCommand(NewCommand("list", extListCommand))
return true
})
2015-07-10 20:54:06 +00:00
}