зеркало из https://github.com/microsoft/git.git
Merge branch 'bw/grep-no-index-no-exclude'
* bw/grep-no-index-no-exclude: grep --no-index: don't use git standard exclusions grep: do not use --index in the short usage output
This commit is contained in:
Коммит
6fdab32e14
|
@ -646,7 +646,6 @@ static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec)
|
||||||
int i, hit = 0;
|
int i, hit = 0;
|
||||||
|
|
||||||
memset(&dir, 0, sizeof(dir));
|
memset(&dir, 0, sizeof(dir));
|
||||||
setup_standard_excludes(&dir);
|
|
||||||
|
|
||||||
fill_directory(&dir, pathspec->raw);
|
fill_directory(&dir, pathspec->raw);
|
||||||
for (i = 0; i < dir.nr; i++) {
|
for (i = 0; i < dir.nr; i++) {
|
||||||
|
@ -777,8 +776,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
OPT_BOOLEAN(0, "cached", &cached,
|
OPT_BOOLEAN(0, "cached", &cached,
|
||||||
"search in index instead of in the work tree"),
|
"search in index instead of in the work tree"),
|
||||||
OPT_BOOLEAN(0, "index", &use_index,
|
{ OPTION_BOOLEAN, 0, "index", &use_index, NULL,
|
||||||
"--no-index finds in contents not managed by git"),
|
"finds in contents not managed by git",
|
||||||
|
PARSE_OPT_NOARG | PARSE_OPT_NEGHELP },
|
||||||
OPT_GROUP(""),
|
OPT_GROUP(""),
|
||||||
OPT_BOOLEAN('v', "invert-match", &opt.invert,
|
OPT_BOOLEAN('v', "invert-match", &opt.invert,
|
||||||
"show non-matching lines"),
|
"show non-matching lines"),
|
||||||
|
|
|
@ -554,7 +554,6 @@ test_expect_success 'outside of git repository' '
|
||||||
mkdir -p non/git/sub &&
|
mkdir -p non/git/sub &&
|
||||||
echo hello >non/git/file1 &&
|
echo hello >non/git/file1 &&
|
||||||
echo world >non/git/sub/file2 &&
|
echo world >non/git/sub/file2 &&
|
||||||
echo ".*o*" >non/git/.gitignore &&
|
|
||||||
{
|
{
|
||||||
echo file1:hello &&
|
echo file1:hello &&
|
||||||
echo sub/file2:world
|
echo sub/file2:world
|
||||||
|
@ -581,6 +580,7 @@ test_expect_success 'inside git repository but with --no-index' '
|
||||||
echo world >is/git/sub/file2 &&
|
echo world >is/git/sub/file2 &&
|
||||||
echo ".*o*" >is/git/.gitignore &&
|
echo ".*o*" >is/git/.gitignore &&
|
||||||
{
|
{
|
||||||
|
echo ".gitignore:.*o*" &&
|
||||||
echo file1:hello &&
|
echo file1:hello &&
|
||||||
echo sub/file2:world
|
echo sub/file2:world
|
||||||
} >is/expect.full &&
|
} >is/expect.full &&
|
||||||
|
|
Загрузка…
Ссылка в новой задаче