Options (6)
-m, --modifiedbooleanDisplay only modified files
Example:
hg status {{[-m|--modified]}}-a, --addedbooleanDisplay only added files
Example:
hg status {{[-a|--added]}}-r, --removedbooleanDisplay only removed files
Example:
hg status {{[-r|--removed]}}-d, --deletedbooleanDisplay only deleted (but tracked) files
Example:
hg status {{[-d|--deleted]}}-I, --includebooleanDisplay only files matching a specified glob pattern
Example:
hg status {{[-I|--include]}} {{pattern}}-X, --excludebooleanDisplay files, excluding those that match a specified glob pattern
Example:
hg status {{[-X|--exclude]}} {{pattern}}Examples (8)
Display the status of changed files
Display only modified files
hg status [-m|--modified]Display only added files
hg status [-a|--added]Display only removed files
hg status [-r|--removed]Display only deleted (but tracked) files
hg status [-d|--deleted]Display changes in the working directory compared to a specified changeset
hg status --rev revisionDisplay only files matching a specified glob pattern
hg status [-I|--include] patternDisplay files, excluding those that match a specified glob pattern
hg status [-X|--exclude] patternmade by @shridhargupta | data from tldr-pages