We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e63a4 commit d04b902Copy full SHA for d04b902
pkg/resourcewatch/git/git_store.go
@@ -42,7 +42,7 @@ const (
42
// into a Git repository. Each change is stored as separate commit which means a full history of the
43
// resource lifecycle is preserved.
44
func NewGitStorage(path string) (*GitStorage, error) {
45
- // If the repo does not exists, do git init
+ // If the repo does not exist, do git init
46
if _, err := os.Stat(filepath.Join(path, ".git")); os.IsNotExist(err) {
47
_, err := git.PlainInit(path, false)
48
if err != nil {
0 commit comments