diff --git a/builtin/survey.c b/builtin/survey.c index 03a6727b4dc61d..eee0f8d7abb65b 100644 --- a/builtin/survey.c +++ b/builtin/survey.c @@ -21,6 +21,7 @@ #include "strvec.h" #include "tag.h" #include "trace2.h" +#include "color.h" static const char * const survey_usage[] = { N_("(EXPERIMENTAL!) git survey "), @@ -906,6 +907,11 @@ int cmd_survey(int argc, const char **argv, const char *prefix, if (argc == 2 && !strcmp(argv[1], "-h")) usage_with_options(survey_usage, survey_options); + if (isatty(2)) + color_fprintf_ln(stderr, + want_color_fd(2, GIT_COLOR_AUTO) ? GIT_COLOR_YELLOW : "", + "(THIS IS EXPERIMENTAL, EXPECT THE OUTPUT FORMAT TO CHANGE!)"); + ctx.repo = repo; prepare_repo_settings(ctx.repo);