Commit e51d9a3d authored by Suzanne Selhorn's avatar Suzanne Selhorn

Merge branch 'fix-wrong-conan-search-arg' into 'master'

Remove --all from conan search commands

See merge request gitlab-org/gitlab!43343
parents 758e4194 4932f061
......@@ -119,7 +119,7 @@ Once the remote is set, you can use the remote when running Conan commands by ad
For example:
```shell
conan search Hello* --all --remote=gitlab
conan search Hello* --remote=gitlab
```
### Instance level remote
......@@ -285,9 +285,9 @@ The `conan search` command can be run searching by full or partial package name,
To search using a partial name, use the wildcard symbol `*`, which should be placed at the end of your search (for example, `my-packa*`):
```shell
conan search Hello --all --remote=gitlab
conan search He* --all --remote=gitlab
conan search Hello/0.1@mycompany/beta --all --remote=gitlab
conan search Hello --remote=gitlab
conan search He* --remote=gitlab
conan search Hello/0.1@mycompany/beta --remote=gitlab
```
The scope of your search includes all projects you have permission to access, this includes your private projects as well as all public projects.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment