Personal fork of the mighty, self-hostable Git server for the command line 🍦
1package git 2 3import "errors" 4 5var ( 6 ErrFileNotFound = errors.New("file not found") 7 ErrDirectoryNotFound = errors.New("directory not found") 8 ErrReferenceNotFound = errors.New("reference not found") 9)