diff --git a/docs/keybindings/Keybindings_ja.md b/docs/keybindings/Keybindings_ja.md index a07f7bb33..761d745d7 100644 --- a/docs/keybindings/Keybindings_ja.md +++ b/docs/keybindings/Keybindings_ja.md @@ -85,6 +85,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct ctrl+k: コミットを1つ上に移動 v: コミットを貼り付け (cherry-pick) A: ステージされた変更でamendコミット + a: reset commit author t: コミットをrevert T: タグを作成 ctrl+l: ログメニューを開く diff --git a/pkg/cheatsheet/check.go b/pkg/cheatsheet/check.go index 6ee4de21f..a0c40e775 100644 --- a/pkg/cheatsheet/check.go +++ b/pkg/cheatsheet/check.go @@ -47,7 +47,7 @@ func Check() { if err != nil { log.Fatalf("Error occurred while checking if cheatsheets are up to date: %v", err) } - fmt.Printf("\nCheatsheets are out of date. Please run `%s` at the project root and commit the changes\n", CommandToRun()) + fmt.Printf("\nCheatsheets are out of date. Please run `%s` at the project root and commit the changes. If you run the script and no keybindings files are updated as a result, try rebasing onto master and trying again.\n", CommandToRun()) os.Exit(1) }