mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-16 21:32:27 +00:00
Wrap the generic repository-missing message correctly
Now appears to the client as: ``` fatal: remote error: no git access This Overleaf project currently has no git access, either because the project does not exist, or because git access is not enabled for the project. ```
This commit is contained in:
parent
abcaf8242e
commit
9ee39ae930
1 changed files with 3 additions and 2 deletions
|
@ -10,8 +10,9 @@ import java.util.List;
|
|||
public class MissingRepositoryException extends SnapshotAPIException {
|
||||
|
||||
public static final List<String> GENERIC_REASON = Arrays.asList(
|
||||
"This Overleaf project currently has no git access, either",
|
||||
"because the project does not exist, or because git access is not enabled for the project.",
|
||||
"This Overleaf project currently has no git access, either because",
|
||||
"the project does not exist, or because git access is not enabled",
|
||||
"for the project.",
|
||||
"",
|
||||
"If this is unexpected, please contact us at support@overleaf.com, or",
|
||||
"see https://www.overleaf.com/help/342 for more information."
|
||||
|
|
Loading…
Reference in a new issue