Added hint about using .gitignore in git status while printing untracked files Basically, many users don't come to know about .gitignore functionality in their starting stages of git and wonder over how to keep the build or doc files without tracking by git. So, if we add a line saying about gitignore while printing help to add untracked files in git status output, it can be very useful Signed-off-by: Pavan Kumar Sunkara <pavan.sss1991@xxxxxxxxx> --- wt-status.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/wt-status.c b/wt-status.c index 5807fc3..f17300f 100644 --- a/wt-status.c +++ b/wt-status.c @@ -100,6 +100,7 @@ static void wt_status_print_untracked_header(struct wt_status *s) if (!advice_status_hints) return; color_fprintf_ln(s->fp, c, "# (use \"git add <file>...\" to include in what will be committed)"); + color_fprintf_ln(s->fp, c, "# (add it's path to .gitignore to intentionally untrack it)"); color_fprintf_ln(s->fp, c, "#"); } -- -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html