1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
package commands
import (
"fmt"
"github.com/git-lfs/git-lfs/v3/config"
"github.com/git-lfs/git-lfs/v3/tr"
"github.com/spf13/cobra"
)
func extCommand(cmd *cobra.Command, args []string) {
printAllExts()
}
func extListCommand(cmd *cobra.Command, args []string) {
n := len(args)
if n == 0 {
printAllExts()
return
}
for _, key := range args {
ext := cfg.Extensions()[key]
printExt(ext)
}
}
func printAllExts() {
extensions, err := cfg.SortedExtensions()
if err != nil {
fmt.Println(err)
return
}
for _, ext := range extensions {
printExt(ext)
}
}
func printExt(ext config.Extension) {
Print(tr.Tr.Get("Extension: %s", ext.Name))
Print(` clean = %s
smudge = %s
priority = %d`, ext.Clean, ext.Smudge, ext.Priority)
}
func init() {
RegisterCommand("ext", extCommand, func(cmd *cobra.Command) {
cmd.AddCommand(NewCommand("list", extListCommand))
})
}
|