1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-04 10:34:55 +02:00

Don't panic when there are no valid git repos

This commit is contained in:
Luka Markušić 2022-05-08 16:01:30 +02:00
parent f7c44f2407
commit 1de5ca3511
2 changed files with 3 additions and 1 deletions

View File

@ -190,9 +190,9 @@ func (app *App) setupRepo() (bool, error) {
return true, nil
}
}
return false, err
}
fmt.Println(app.Tr.NoRecentRepositories)
os.Exit(1)
}
if err := app.OSCommand.Cmd.New("git init").Run(); err != nil {

View File

@ -255,6 +255,7 @@ type TranslationSet struct {
DiscardFileChangesPrompt string
DisabledForGPG string
CreateRepo string
NoRecentRepositories string
AutoStashTitle string
AutoStashPrompt string
StashPrefix string
@ -873,6 +874,7 @@ func EnglishTranslationSet() TranslationSet {
DiscardFileChangesPrompt: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted",
DisabledForGPG: "Feature not available for users using GPG",
CreateRepo: "Not in a git repository. Create a new git repository? (y/n): ",
NoRecentRepositories: "Must open lazygit in a git repository. No valid recent repositories. Exiting.",
AutoStashTitle: "Autostash?",
AutoStashPrompt: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
StashPrefix: "Auto-stashing changes for ",