@@ -48,40 +48,40 @@ When searching a repository, command chaining can be used to return more specifi
48
48
49
49
** Search for a repository that contains a file**
50
50
51
- If you are searching for a file in a repository, use ` repo:contains.file ` .
51
+ If you are searching for a file or a file path in a repository, use ` repo:has.path ` .
52
52
53
53
<Highlighter
54
- input='repo: repository-path repo: contains .file (file-path)'
54
+ input='repo: repository-path repo: has .path (file-path)'
55
55
matcher='file-path'
56
56
/>
57
57
58
58
For example, when searching for the ` package.json ` file in a project, this search query will return the file.
59
59
60
- <SourcegraphSearch query =" repo:^github\.com/sourcegraph/.* repo:contains.file (package.json) " />
60
+ <SourcegraphSearch query =" repo:^github\.com/sourcegraph/.* repo:has.path (package.json) " />
61
61
62
- A similar example that uses the content query to search for files is shown below .
62
+ Alternatively, you can use ` repo:has.file ` , which allows you to search for files containing content .
63
63
64
- <SourcegraphSearch query =" repo:contains( file:package\.json$ content:ts ) " />
64
+ <SourcegraphSearch query =" repo:has. file(path :package\.json$ content:tsconfig ) " />
65
65
66
- This query returns repositories that contain a ` package.json ` file and has content written in TypeScript .
66
+ This query returns repositories that contain a ` package.json ` file containing the string ` tsconfig ` .
67
67
68
68
** Search for a repository that contains some content**
69
69
70
- Suppose you are searching for some content in a repository, such as a library. Use ` repo:contains .content ` .
70
+ Suppose you are searching for some content in a repository, such as a library. Use ` repo:has .content ` .
71
71
72
72
<Highlighter
73
- input='repo: repo-path repo: contains .content(your-content)'
73
+ input='repo: repo-path repo: has .content(your-content)'
74
74
matcher='your-content'
75
75
/>
76
76
77
77
<Highlighter
78
- input='repo: repo-path repo: contains .content(regular-pattern)'
78
+ input='repo: repo-path repo: has .content(regular-pattern)'
79
79
matcher='regular-pattern'
80
80
/>
81
81
82
82
We can search for the ` mdi-react ` library in Sourcegraph, for example:
83
83
84
- <SourcegraphSearch query =" repo:^github\.com/sourcegraph/.* repo:contains .content(mdi-react) " />
84
+ <SourcegraphSearch query =" repo:^github\.com/sourcegraph/.* repo:has .content(mdi-react) " />
85
85
86
86
87
87
The above query returns repos that have ` mdi-react ` among its contents.
0 commit comments