Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-10 15:10:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-10 15:10:05 +0300
commit694fe540a21b9709b3ac2268bceb36516024f4b0 (patch)
tree1f60de3bdea4124da5aa959ff7667a58071863c4 /doc
parentcd582decb99af5049e64d8078815abdf39e5d4b4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc')
-rw-r--r--doc/api/project_import_export.md3
-rw-r--r--doc/user/project/code_owners.md2
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/api/project_import_export.md b/doc/api/project_import_export.md
index 21a90670aa6..cee01828410 100644
--- a/doc/api/project_import_export.md
+++ b/doc/api/project_import_export.md
@@ -42,6 +42,9 @@ curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab
}
```
+NOTE: **Note:**
+The upload request will be sent with `Content-Type: application/gzip` header. Ensure that your pre-signed URL includes this as part of the signature.
+
## Export status
Get the status of export.
diff --git a/doc/user/project/code_owners.md b/doc/user/project/code_owners.md
index e3ec936d51c..45d9e8f04e0 100644
--- a/doc/user/project/code_owners.md
+++ b/doc/user/project/code_owners.md
@@ -115,7 +115,7 @@ Example `CODEOWNERS` file:
# This will match all files for which the file name ends in `.rb`
*.rb @ruby-owner
-# Files with a `#` can still be accesssed by escaping the pound sign
+# Files with a `#` can still be accessed by escaping the pound sign
\#file_with_pound.rb @owner-file-with-pound
# Multiple codeowners can be specified, separated by spaces or tabs