diff options
author | Joey Hess <joey@kitenet.net> | 2011-09-18 20:41:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-09-18 20:42:15 -0400 |
commit | 33cd1ffbfe200188a4fc61fd5715e7aa29556d7f (patch) | |
tree | b21be384c89e29e2b56e5e1c5e1a931871837c27 /doc | |
parent | 9da23dff78d80158ba01a271ac2a32830fd9bccc (diff) |
make find show files meeting limits, even when not present
find: Rather than only showing files whose contents are present, when used
with --exclude --copies or --in, displays all files that match the
specified conditions.
Note that this is a behavior change for find --exclude! Old behavior
can be gotten with find --in . --exclude=...
Diffstat (limited to 'doc')
-rw-r--r-- | doc/git-annex.mdwn | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 836e782cd..4a8e28a6e 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -222,6 +222,8 @@ 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. With no parameters, defaults to finding all files in the current directory and its subdirectories. @@ -432,7 +434,8 @@ file contents are present at either of two repositories. in a repository. The repository should be specified using the name of a configured remote, - or the UUID or description of a repository. + or the UUID or description of a repository. For the current repository, + use "--in=." * --copies=number |