Not in a git project
| 91 | |
| 92 | |
| 93 | class NotAGitProjectError(CommitizenException): |
| 94 | """Not in a git project""" |
| 95 | |
| 96 | exit_code = ExitCode.NOT_A_GIT_PROJECT |
| 97 | message = "fatal: not a git repository (or any of the parent directories): .git" |
| 98 | |
| 99 | |
| 100 | class MissingCzCustomizeConfigError(CommitizenException): |
no outgoing calls
searching dependent graphs…