hg-add - Man Page
add the specified files on the next commit
Examples (TL;DR)
- 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
Synopsis
hg add [OPTION]... [FILE]...
Description
Schedule files to be version controlled and added to the repository.
The files will be added to the repository at the next commit. To undo an add before that, see hg forget.
If no names are given, add all files to the repository (except files matching .hgignore).
Examples:
New (unknown) files are added automatically by hg add:
$ ls foo.c $ hg status ? foo.c $ hg add adding foo.c $ hg status A foo.c
Specific files to be added can be specified:
$ ls bar.c foo.c $ hg status ? bar.c ? foo.c $ hg add bar.c $ hg status A bar.c ? foo.c
Returns 0 if all files are successfully added.
Options
- -I,--include <PATTERN[+]>
include names matching the given patterns
- -X,--exclude <PATTERN[+]>
exclude names matching the given patterns
- -S, --subrepos
recurse into subrepositories
- -n, --dry-run
do not perform actions, just print output
[+] marked option can be specified multiple times