github.com/pluralsh/plural-cli@v0.9.5/cmd/plural/errors.go (about)

     1  package plural
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  var (
     8  	errNoGit      = fmt.Errorf("Could not compare current workspace to origin. Do you have an `origin` remote configured, or does your repo not have an initial commit?")
     9  	errRemoteDiff = fmt.Errorf("Your local workspace is not in sync with remote. Either `git pull` recent changes or `git push` any missed changes.  Also confirm you can authenticate to the origin remote, which you can see with `git remote -v`")
    10  	errUnlock     = fmt.Errorf("could not decrypt your repo, this is likely due to using the wrong key at ~/.plural/key. The original key might be in a backup or on your previous machine.")
    11  )