Merge branch 'tb/document-status-u-tradeoff'
Suggest users to look into using--untracked=no option when "git status" takes too long. * tb/document-status-u-tradeoff: status: advise to consider use of -u when read_directory takes too long git status: document trade-offs in choosing parameters to the -u option
This commit is contained in:
2
advice.c
2
advice.c
@ -8,6 +8,7 @@ int advice_push_already_exists = 1;
|
||||
int advice_push_fetch_first = 1;
|
||||
int advice_push_needs_force = 1;
|
||||
int advice_status_hints = 1;
|
||||
int advice_status_u_option = 1;
|
||||
int advice_commit_before_merge = 1;
|
||||
int advice_resolve_conflict = 1;
|
||||
int advice_implicit_identity = 1;
|
||||
@ -25,6 +26,7 @@ static struct {
|
||||
{ "pushfetchfirst", &advice_push_fetch_first },
|
||||
{ "pushneedsforce", &advice_push_needs_force },
|
||||
{ "statushints", &advice_status_hints },
|
||||
{ "statusuoption", &advice_status_u_option },
|
||||
{ "commitbeforemerge", &advice_commit_before_merge },
|
||||
{ "resolveconflict", &advice_resolve_conflict },
|
||||
{ "implicitidentity", &advice_implicit_identity },
|
||||
|
Reference in New Issue
Block a user