On Thu, Jan 02, 2020 at 03:04:01AM +0000, Heba Waly via GitGitGadget wrote: > From: Heba Waly <heba.waly@xxxxxxxxx> > > @@ -390,7 +390,7 @@ static int add_files(struct dir_struct *dir, int flags) > fprintf(stderr, _(ignore_error)); > for (i = 0; i < dir->ignored_nr; i++) > fprintf(stderr, "%s\n", dir->ignored[i]->name); > - fprintf(stderr, _("Use -f if you really want to add them.\n")); > + advise(_("Use -f if you really want to add them.\n")); In the vein of the rest of your project, for me I'd rather see a copy-pasteable response here: "Use 'git add -f " + name + "' if you really want to add them." That is, if you know the name of the file that was being added here, you could provide it so the user can simply copy and go, rather than retyping. - Emily