Files
sgard/cmd/sgard/init.go
Kyle Isom 1550bdf940 Step 4: Garden core with Init, Open, Add and CLI commands.
Garden package ties manifest and store together. Supports adding
files (hashed and stored as blobs), directories (manifest-only),
and symlinks (target recorded). Paths under $HOME are stored as
~/... in the manifest for portability. CLI init and add commands
wired up via cobra.

8 tests covering init, open, add for all three entry types,
duplicate rejection, HashFile, and tilde path expansion.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 21:34:55 -07:00

26 lines
433 B
Go

package main
import (
"fmt"
"github.com/kisom/sgard/garden"
"github.com/spf13/cobra"
)
var initCmd = &cobra.Command{
Use: "init",
Short: "Create a new sgard repository",
RunE: func(cmd *cobra.Command, args []string) error {
_, err := garden.Init(repoFlag)
if err != nil {
return err
}
fmt.Printf("Initialized sgard repository at %s\n", repoFlag)
return nil
},
}
func init() {
rootCmd.AddCommand(initCmd)
}