Commit 9bae57aa authored by Nick Gaskill's avatar Nick Gaskill

Merge branch 'trizzi-master-patch-85155' into 'master'

Add options for clearing cache to the docs

See merge request gitlab-org/gitlab!79057
parents bc3b44f9 198256dc
...@@ -349,6 +349,16 @@ used to access them: ...@@ -349,6 +349,16 @@ used to access them:
subgroups. subgroups.
- A project deploy token only has access to packages published to that particular project. - A project deploy token only has access to packages published to that particular project.
## Troubleshooting
To improve performance, Composer caches files related to a package. Note that Composer doesn't remove data by
itself. The cache grows as new packages are installed. If you encounter issues, clear the cache with
this command:
```shell
composer clearcache
```
## Supported CLI commands ## Supported CLI commands
The GitLab Composer repository supports the following Composer CLI commands: The GitLab Composer repository supports the following Composer CLI commands:
......
...@@ -407,6 +407,16 @@ characters are removed. ...@@ -407,6 +407,16 @@ characters are removed.
A `pip install` request for `my.package` looks for packages that match any of A `pip install` request for `my.package` looks for packages that match any of
the three characters, such as `my-package`, `my_package`, and `my....package`. the three characters, such as `my-package`, `my_package`, and `my....package`.
## Troubleshooting
To improve performance, PyPI caches files related to a package. Note that PyPI doesn't remove data by
itself. The cache grows as new packages are installed. If you encounter issues, clear the cache with
this command:
```shell
pip cache purge
```
## Supported CLI commands ## Supported CLI commands
The GitLab PyPI repository supports the following CLI commands: The GitLab PyPI repository supports the following CLI commands:
......
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