package clientcmd import ( "fmt" "os" ) //AddFiles adds files to the repo func InitializeRepo() error { cwd, err := os.Getwd() if err != nil { return err } fmt.Println("Initializing repo in dir: ", cwd) return nil }