Versions in this module Expand all Collapse all v0 v0.1.0 May 11, 2026 Changes in this version + var ErrAlreadyExists = errors.New("クローン先のディレクトリは既に存在します") + var ErrGitNotInstalled = errors.New("git コマンドが見つかりません") + func Clone(dest Destination, opts Options) error + func CloneURL(dest Destination, useSSH bool) string + type Destination struct + BaseDir string + Host string + Owner string + Repo string + func ResolveDestination(baseDir, owner, repo string) Destination + func (d Destination) FullPath() string + type Options struct + AllowExisting bool + Stderr io.Writer + Stdout io.Writer + UseSSH bool