Add --include, which is the same as --not --exclude.

This commit is contained in:
Joey Hess 2011-12-22 13:53:06 -04:00
parent 30cf6ce81c
commit 6bffe509d7
6 changed files with 28 additions and 10 deletions

View file

@ -241,12 +241,13 @@ subdirectories).
* find [path ...]
Outputs a list of annexed files whose content is currently present.
Or, if a file matching option is specified, outputs a list of all
matching files, whether or not their content is currently present.
Outputs a list of annexed files in the specified path. With no path,
finds files in the current directory and its subdirectories.
With no parameters, defaults to finding all files in the current directory
and its subdirectories.
By default, only lists annexed files whose content is currently present.
This can be changed by specifying file matching options. To list all
annexed files, present or not, specify --include "*". To list all
annexed files whose content is not present, specify --not --in "."
To output filenames terminated with nulls, for use with xargs -0,
specify --print0.
@ -447,7 +448,16 @@ file contents are present at either of two repositories.
* --exclude=glob
Skips files matching the glob pattern. The glob is matched relative to
the current directory. For example: --exclude='*.mp3' --exclude='subdir/*'
the current directory. For example:
--exclude='*.mp3' --exclude='subdir/*'
* --include=glob
Skips files not matching the glob pattern. (Same as --not --exclude.)
For example, to include only mp3 and ogg files:
--include='*.mp3' --or --include='*.ogg'
* --in=repository