修改git过滤文件

This commit is contained in:
zyj
2026-03-04 10:14:12 +08:00
parent a9f9330744
commit 89d64cb117
12 changed files with 570 additions and 1 deletions

View File

@@ -0,0 +1,102 @@
package commands
import (
"fmt"
"github.com/spf13/cobra"
)
func newProfileCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "profile",
Short: "管理 Profile 配置文件",
Long: `创建、编辑、删除和管理 Profile 配置方案。`,
}
// Subcommands
cmd.AddCommand(newProfileCreateCmd())
cmd.AddCommand(newProfileShowCmd())
cmd.AddCommand(newProfileListCmd())
cmd.AddCommand(newProfileDeleteCmd())
cmd.AddCommand(newProfileUseCmd())
return cmd
}
func newProfileCreateCmd() *cobra.Command {
var template string
cmd := &cobra.Command{
Use: "create <name>",
Short: "创建新 Profile",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
name := args[0]
fmt.Printf("📋 Creating profile \"%s\"...\n", name)
// TODO: Create profile
fmt.Printf("✅ Profile \"%s\" created.\n", name)
fmt.Printf("Edit with: devpack profile edit %s\n", name)
return nil
},
}
cmd.Flags().StringVarP(&template, "template", "t", "standard", "模板 (minimal|standard|full)")
return cmd
}
func newProfileShowCmd() *cobra.Command {
return &cobra.Command{
Use: "show <name>",
Short: "显示 Profile 内容",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
name := args[0]
fmt.Printf("📋 Profile: %s\n", name)
// TODO: Show profile content
return nil
},
}
}
func newProfileListCmd() *cobra.Command {
return &cobra.Command{
Use: "list",
Short: "列出所有 Profile",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println("📋 Profiles:")
// TODO: List profiles
fmt.Println(" (none)")
return nil
},
}
}
func newProfileDeleteCmd() *cobra.Command {
return &cobra.Command{
Use: "delete <name>",
Short: "删除 Profile",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
name := args[0]
fmt.Printf("🗑️ Deleting profile \"%s\"...\n", name)
// TODO: Delete profile
fmt.Printf("✅ Profile \"%s\" deleted.\n", name)
return nil
},
}
}
func newProfileUseCmd() *cobra.Command {
return &cobra.Command{
Use: "use <name>",
Short: "设置默认 Profile",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
name := args[0]
fmt.Printf("✅ Default profile set to \"%s\".\n", name)
// TODO: Set default profile
return nil
},
}
}