You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/org/opensolaris/opengrok/index/CommandLineOptions.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ public CommandLineOptions() {
84
84
options.add(newOption('H', null, "Generate history cache for all repositories"));
85
85
options.add(newOption('h', "/path/to/repository", "just generate history cache for the specified repos (absolute path from source root)"));
86
86
options.add(newOption('I', "pattern", "Only files matching this pattern will be examined (supports wildcards, example: -I *.java -I *.c)"));
87
-
options.add(newOption('i', "pattern", "Ignore the named files or directories (supports wildcards, example: -i *.so -i *.dll)"));
87
+
options.add(newOption('i', "pattern", "Ignore the named files (prefix with 'f:') or directories (prefix with 'd:') (supports wildcards, example: -i *.so -i *.dll)"));
88
88
options.add(newOption('j', "class", "Name of the JDBC driver class used by the history cache. Can use one of the shorthands \"client\" (org.apache.derby.jdbc.ClientDriver) or \"embedded\" (org.apache.derby.jdbc.EmbeddedDriver). Default: \"client\""));
89
89
options.add(newOption('k', "/path/to/repository", "Kill the history cache for the given repository and exit. Use '*' to delete the cache for all repositories."));
90
90
options.add(newOption('K', null, "List all repository pathes and exit."));
0 commit comments