mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
a2f538f114
- Refactor `installer.clone` into new `repo.Clone` package and method. - Refactor `sheets.isGitDir` into `repo.GitDir`. Both of these changes read better, and will facilitate cleaner architecture when `--update` is implemented.
26 lines
434 B
Go
26 lines
434 B
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/go-git/go-git/v5"
|
|
)
|
|
|
|
// Clone clones the repo available at `url`
|
|
func Clone(url string) error {
|
|
|
|
// clone the community cheatsheets
|
|
_, err := git.PlainClone(url, false, &git.CloneOptions{
|
|
URL: "https://github.com/cheat/cheatsheets.git",
|
|
Depth: 1,
|
|
Progress: os.Stdout,
|
|
})
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to clone cheatsheets: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|