mirror of
https://github.com/go-gitea/gitea
synced 2024-11-08 19:24:25 +00:00
Update login methods in package docs (#20561)
This commit is contained in:
parent
0b12abcfb5
commit
66b623c2aa
@ -60,6 +60,8 @@ curl --user your_username:your_password_or_token \
|
|||||||
https://gitea.example.com/api/packages/testuser/composer?version=1.0.3
|
https://gitea.example.com/api/packages/testuser/composer?version=1.0.3
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password.
|
||||||
|
|
||||||
The server responds with the following HTTP Status codes.
|
The server responds with the following HTTP Status codes.
|
||||||
|
|
||||||
| HTTP Status Code | Meaning |
|
| HTTP Status Code | Meaning |
|
||||||
|
@ -37,7 +37,7 @@ conan user --remote {remote} --password {password} {username}
|
|||||||
| -----------| ----------- |
|
| -----------| ----------- |
|
||||||
| `remote` | The remote name. |
|
| `remote` | The remote name. |
|
||||||
| `username` | Your Gitea username. |
|
| `username` | Your Gitea username. |
|
||||||
| `password` | Your Gitea password or a personal access token. |
|
| `password` | Your Gitea password. If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password. |
|
||||||
| `owner` | The owner of the package. |
|
| `owner` | The owner of the package. |
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
@ -34,6 +34,8 @@ To push an image or if the image is in a private registry, you have to authentic
|
|||||||
docker login gitea.example.com
|
docker login gitea.example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password.
|
||||||
|
|
||||||
## Image naming convention
|
## Image naming convention
|
||||||
|
|
||||||
Images must follow this naming convention:
|
Images must follow this naming convention:
|
||||||
|
@ -48,6 +48,8 @@ curl --user your_username:your_password_or_token \
|
|||||||
https://gitea.example.com/api/packages/testuser/generic/test_package/1.0.0/file.bin
|
https://gitea.example.com/api/packages/testuser/generic/test_package/1.0.0/file.bin
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password.
|
||||||
|
|
||||||
The server reponds with the following HTTP Status codes.
|
The server reponds with the following HTTP Status codes.
|
||||||
|
|
||||||
| HTTP Status Code | Meaning |
|
| HTTP Status Code | Meaning |
|
||||||
|
@ -42,7 +42,7 @@ helm cm-push ./{chart_file}.tgz {repo}
|
|||||||
| Parameter | Description |
|
| Parameter | Description |
|
||||||
| ------------ | ----------- |
|
| ------------ | ----------- |
|
||||||
| `username` | Your Gitea username. |
|
| `username` | Your Gitea username. |
|
||||||
| `password` | Your Gitea password or a personal access token. |
|
| `password` | Your Gitea password. If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password. |
|
||||||
| `repo` | The name for the repository. |
|
| `repo` | The name for the repository. |
|
||||||
| `chart_file` | The Helm Chart archive. |
|
| `chart_file` | The Helm Chart archive. |
|
||||||
| `owner` | The owner of the package. |
|
| `owner` | The owner of the package. |
|
||||||
|
@ -38,7 +38,7 @@ dotnet nuget add source --name {source_name} --username {username} --password {p
|
|||||||
| ------------- | ----------- |
|
| ------------- | ----------- |
|
||||||
| `source_name` | The desired source name. |
|
| `source_name` | The desired source name. |
|
||||||
| `username` | Your Gitea username. |
|
| `username` | Your Gitea username. |
|
||||||
| `password` | Your Gitea password or a personal access token. |
|
| `password` | Your Gitea password. If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password. |
|
||||||
| `owner` | The owner of the package. |
|
| `owner` | The owner of the package. |
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
@ -42,7 +42,7 @@ password = {password}
|
|||||||
| ------------ | ----------- |
|
| ------------ | ----------- |
|
||||||
| `owner` | The owner of the package. |
|
| `owner` | The owner of the package. |
|
||||||
| `username` | Your Gitea username. |
|
| `username` | Your Gitea username. |
|
||||||
| `password` | Your Gitea password or a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}). |
|
| `password` | Your Gitea password. If you are using 2FA or OAuth use a [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}) instead of the password. |
|
||||||
|
|
||||||
## Publish a package
|
## Publish a package
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ https://gitea.example.com/api/packages/{owner}/rubygems: Bearer {token}
|
|||||||
| Parameter | Description |
|
| Parameter | Description |
|
||||||
| ------------- | ----------- |
|
| ------------- | ----------- |
|
||||||
| `owner` | The owner of the package. |
|
| `owner` | The owner of the package. |
|
||||||
| `token` | Your personal access token. |
|
| `token` | Your [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}). |
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user