-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
194 lines (139 loc) · 6.92 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
NAME
git-find - Find files anywhere in a Git repository
SYNOPSIS
git find [SWITCHES] [REVS] [--] [EXPRESSION]
This command searches for files satisfying the "EXPRESSION", a la find(1),
anywhere in a Git repo. Unlike find(1), the search scope is the whole
repo (for the "REVS" you specify) regardless of the current directory.
For more help, run "git find --help" or "git find --man".
NOTE: most of this is not yet implemented :) . Contributions welcome!
OPTIONS AND ARGUMENTS
Quick reference:
Switches:
Basic: Help (-?, --usage; -h, --help; --man); Version (-V, --version);
Verbosity (-v); Warnings (-W).
Search scope: Git directory (--git-dir), Working directory (--wd),
Unrestricted search (-u).
Revs:
Anything accepted by git-rev-parse(1).
A git ref (under ".git/refs/") is also a rev in the sense of
git-rev-parse(1) and gitrevisions(7). The terms "ref" and "rev" are
used interchangeably by "git-find".
Expression:
Anything accepted by find(1), plus -ref/-rev
DESCRIPTION
Switches
These are options controlling the overall behaviour of git-find. They may
not be interleaved in with the "Expression", if one is given.
--git-dir <dir>
Use "<dir>" as the ".git" directory. Not yet implemented.
-h, --help
Print basic help
--man
Show full help (equivalent to "man git-find")
-u Unrestricted search. Normally, git-find does not search ignored
files. When this option is given, it does search those files.
However, it still skips ".git/" directories.
--usage, -?
Print a brief usage reminder
-v Increase verbosity. May be given multiple times.
-V, --version
Print version information and exit
--wd <dir>
Use "<dir>" as the working directory. Not yet implemented.
-W, -Wname
Enable warning name, or all warnings if no name is given.
Operators
In the "Revs" or "Expression", you can specify multiple items joined by
logical operators. They are listed below in order of descending
precedence. Each operator must be separated by whitespace from any
adjacent parameters. Operators short-circuit.
( ), [ ]
Grouping. Parentheses and brackets are interchangeable.
-not, --not, !, ^
Logical negation.
-a, --a, -and, --and, &&
Logical and. This is the default operator between terms if no
operator is given.
-o, --o, -or, --or, ||
Logical or
, (a single comma)
Sequence: separates items to be evaluated separately. The return
value is that of the last item in the sequence.
Revs
By default, git-find searches the current index (cache). This is the same
as the default for git-ls-files(1). You can specify one or more revs to
search using any of the forms described in gitrevisions(7)
<https://git-scm.com/docs/gitrevisions>.
You can specify the special value "]]" (a double right bracket) to search
the working tree that is currently checked out. (Mnemonic: search *right*
here.) If you have an actual rev called "]]", git-find won't be able to
help you. Sorry!
TODO? You can specify multiple ranges of revs separated by C<-o> (or its
equivalent forms given in L</Operators>) or C<,>. Comma is treated as
equivalent to C<-o> when separating revs.
Expression
The expression includes one or more elements separated by "Operators".
Elements can be options, tests, or operators.
Elements of expressions can be specified in a form similar to find(1).
Long elements (e.g., "-name") can start with a single or a double dash.
Tests are of two types:
Index tests
These are tests that only require information from the git index, such
as the name of the file and whether it is executable. They are (at
least on Unix-like systems):
"-cmin", "-cnewer", "-ctime", "-empty", "-executable", "-false",
"-gid", "-group", "-ilname", "-iname", "-inum", "-ipath", "-iregex",
"-iwholename", "-level", "-mmin", "-mtime", "-name", "-nogroup",
"-nouser", "-path", "-readable", "-regex", "-size", "-true", "-type",
"-uid", "-user", "-wholename", "-writeable"
TODO also -links, -lname, -perm, -samefile, -xtype?
Detailed tests
All tests other than index tests may require checking out a worktree
with one or more of the given revs. Therefore, they may be much
slower than name-only tests. However, if the only rev given is "]]"
(working directory), detailed tests can be executed without checking
out a worktree, so the slowdown is not as bad.
DIFFERENCES FROM FIND(1)
In git-find but not in find(1): -ref, -rev
In find(1) but not in git-find: find switches; TODO -xtype, -context?
WARNINGS
If the "-W" option is given, warnings are enabled. Possible warnings are:
-Wdetailed
Warn if a detailed test is used on a search scope other than "]]" (the
current working tree).
AUTHOR
Christopher White, "<cxw at cpan.org>"
BUGS
Please report any bugs or feature requests through the GitHub interface at
<https://github.com/cxw42/git-find/issues>. I will be notified, and then
you'll automatically be notified of progress on your bug as I make
changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc App::GitFind
You can also look for information at:
* GitHub (report bugs here)
<https://github.com/cxw42/git-find>
* MetaCPAN
<https://metacpan.org/release/App-GitFind>
LICENSE AND COPYRIGHT
Copyright 2019 Christopher White. Portions copyright 2019 D3 Engineering,
LLC.
This program is distributed under the MIT (X11) License:
<http://www.opensource.org/licenses/mit-license.php>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.