Открыть боковую панель
GitLab.org
Gitlab
Коммиты
b8085bf6
Коммит
b8085bf6
создал
Дек 09, 2020
по автору
Marcel Amirault
Просмотр файлов
Fix cURL examples that need double quotes
владелец
68fa8cc6
Изменения
3
Скрыть пробелы
Построчно
Рядом
doc/.vale/gitlab/spelling-exceptions.txt
Просмотр файла @
b8085bf6
...
...
@@ -212,6 +212,7 @@ JavaScript
Jenkins
Jenkinsfile
Jira
jq
jQuery
jsdom
JupyterHub
...
...
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
Просмотр файла @
b8085bf6
...
...
@@ -464,8 +464,9 @@ User.billable.count
::
HistoricalData
.
max_historical_user_count
```
Using cURL and jq (up to a max 100, see the
[
pagination docs
](
../../api/README.md#pagination
)
):
```
shell
# Using curl and jq (up to a max 100, see pagination docs https://docs.gitlab.com/ee/api/#pagination
curl
--silent
--header
"Private-Token: ********************"
"https://gitlab.example.com/api/v4/users?per_page=100&active"
| jq
--compact-output
'.[] | [.id,.name,.username]'
```
...
...
doc/ci/triggers/README.md
Просмотр файла @
b8085bf6
...
...
@@ -164,7 +164,7 @@ need to add in project A's `.gitlab-ci.yml`:
build_docs
:
stage
:
deploy
script
:
-
"
curl
--request
POST
--form
token=TOKEN
--form
ref=master
https://gitlab.example.com/api/v4/projects/9/trigger/pipeline"
-
'
curl
--request
POST
--form
token=TOKEN
--form
ref=master
"
https://gitlab.example.com/api/v4/projects/9/trigger/pipeline"
'
only
:
-
tags
```
...
...
Редактирование
Предварительный просмотр
Поддерживает Markdown
0%
Попробовать снова
или
прикрепить новый файл
.
Отмена
You are about to add
0
people
to the discussion. Proceed with caution.
Сначала завершите редактирование этого сообщения!
Отмена
Пожалуйста,
зарегистрируйтесь
или
войдите
чтобы прокомментировать