2017-12-14 05:22:24 +00:00
|
|
|
# hg add
|
|
|
|
|
|
|
|
> Adds specified files to the staging area for the next commit in Mercurial.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://www.mercurial-scm.org/doc/hg.1.html#add>.
|
2017-12-14 05:22:24 +00:00
|
|
|
|
|
|
|
- Add files or directories to the staging area:
|
|
|
|
|
|
|
|
`hg add {{path/to/file}}`
|
|
|
|
|
|
|
|
- Add all unstaged files matching a specified pattern:
|
|
|
|
|
|
|
|
`hg add --include {{pattern}}`
|
|
|
|
|
|
|
|
- Add all unstaged files, excluding those that match a specified pattern:
|
|
|
|
|
|
|
|
`hg add --exclude {{pattern}}`
|
|
|
|
|
|
|
|
- Recursively add sub-repositories:
|
|
|
|
|
|
|
|
`hg add --subrepos`
|
|
|
|
|
|
|
|
- Perform a test-run without performing any actions:
|
|
|
|
|
|
|
|
`hg add --dry-run`
|