1package git23import (4 "errors"56 "github.com/aymanbagabas/git-module"7)89var (10 // ErrFileNotFound is returned when a file is not found.11 ErrFileNotFound = errors.New("file not found")12 // ErrDirectoryNotFound is returned when a directory is not found.13 ErrDirectoryNotFound = errors.New("directory not found")14 // ErrReferenceNotExist is returned when a reference does not exist.15 ErrReferenceNotExist = git.ErrReferenceNotExist16 // ErrRevisionNotExist is returned when a revision is not found.17 ErrRevisionNotExist = git.ErrRevisionNotExist18 // ErrNotAGitRepository is returned when the given path is not a Git repository.19 ErrNotAGitRepository = errors.New("not a git repository")20)