X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=advice.c;h=ce5f374ecd4917346145c8a380ac8c0e45e849a4;hb=3e06e74e4cc221d0b602622a5a8d472cfa3efa2d;hp=567209aa79afee0443dd0d7049343e1a004ae784;hpb=49f50f58cb664d39ccf047342d05a763471a9420;p=thirdparty%2Fgit.git diff --git a/advice.c b/advice.c index 567209aa79..ce5f374ecd 100644 --- a/advice.c +++ b/advice.c @@ -26,6 +26,7 @@ int advice_ignored_hook = 1; int advice_waiting_for_editor = 1; int advice_graft_file_deprecated = 1; int advice_checkout_ambiguous_remote_branch_name = 1; +int advice_nested_tag = 1; static int advice_use_color = -1; static char advice_colors[][COLOR_MAXLEN] = { @@ -81,6 +82,7 @@ static struct { { "waitingForEditor", &advice_waiting_for_editor }, { "graftFileDeprecated", &advice_graft_file_deprecated }, { "checkoutAmbiguousRemoteBranchName", &advice_checkout_ambiguous_remote_branch_name }, + { "nestedTag", &advice_nested_tag }, /* make this an alias for backward compatibility */ { "pushNonFastForward", &advice_push_update_rejected }