1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-12 13:35:23 +02:00
tldr/pages/common/hg-status.md
2025-04-25 14:45:48 +03:00

36 lines
788 B
Markdown

# hg status
> Show files that have changed in the working directory.
> More information: <https://www.mercurial-scm.org/doc/hg.1.html#status>.
- Display the status of changed files:
`hg status`
- 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 {{revision}}`
- Display only files matching a specified glob pattern:
`hg status {{[-I|--include]}} {{pattern}}`
- Display files, excluding those that match a specified glob pattern:
`hg status {{[-X|--exclude]}} {{pattern}}`