summaryrefslogtreecommitdiff
path: root/doc/api/group_import_export.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/group_import_export.md')
-rw-r--r--doc/api/group_import_export.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/api/group_import_export.md b/doc/api/group_import_export.md
index 79338df4f7a..d2bcac6332a 100644
--- a/doc/api/group_import_export.md
+++ b/doc/api/group_import_export.md
@@ -57,7 +57,8 @@ GET /groups/:id/export/download
| `id` | integer/string | yes | ID of the group owned by the authenticated user |
```shell
-curl --header "PRIVATE-TOKEN: <your_access_token>" --remote-header-name --remote-name "https://gitlab.example.com/api/v4/groups/1/export/download"
+curl --header "PRIVATE-TOKEN: <your_access_token>" --remote-header-name \
+ --remote-name "https://gitlab.example.com/api/v4/groups/1/export/download"
```
```shell
@@ -90,7 +91,9 @@ The `file=` parameter must point to a file on your file system and be preceded
by `@`. For example:
```shell
-curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --form "name=imported-group" --form "path=imported-group" --form "file=@/path/to/file" "https://gitlab.example.com/api/v4/groups/import"
+curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
+ --form "name=imported-group" --form "path=imported-group" \
+ --form "file=@/path/to/file" "https://gitlab.example.com/api/v4/groups/import"
```
NOTE: