On 27 October 2017 at 17:06, Pranit Bauva <pranit.bauva@xxxxxxxxx> wrote: > + for (i = 0; i < argc; i++) { > + if (!strcmp(argv[i], "--term-good")) > + printf(_("%s\n"), terms->term_good); > + else if (!strcmp(argv[i], "--term-bad")) > + printf(_("%s\n"), terms->term_bad); You seem to have lost --term-old and --term-new. I also wonder why these would need translating. You break GETTEXT_POISON here, then fix it in patch 8/8. I'm not even sure you need patch 8/8. If I drop these two `_()`, I can run `git rebase -ix "make GETTEXT_POISON=Yes test"` on the entire series without failure. Patch 8/8 also switches to `test_i18ngrep` for some usages of `git branch` and for some checks on `.git/BISECT_START`. I'm not sure that's needed. > + else > + error(_("BUG: invalid argument %s for 'git bisect terms'.\n" > + "Supported options are: " > + "--term-good|--term-old and " > + "--term-bad|--term-new."), argv[i]); > + }