diff options
author | Kaspar Emanuel <kaspar.emanuel@gmail.com> | 2018-09-24 07:37:24 +0000 |
---|---|---|
committer | Kaspar Emanuel <kaspar.emanuel@gmail.com> | 2018-09-27 19:32:38 +0100 |
commit | 736a5d3709278a5ec9ba68494fb5674552938f74 (patch) | |
tree | 14fe253c191c5041b91ec55e17cefe66a2a1a473 /doc | |
parent | 4c8d2232ca3e4b97a313e9ac4d96dee2b3de9e84 (diff) | |
download | gitlab-ce-736a5d3709278a5ec9ba68494fb5674552938f74.tar.gz |
Add notes about commits API to repository files documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/repository_files.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/api/repository_files.md b/doc/api/repository_files.md index 49fb9bc141d..0623a6b02ae 100644 --- a/doc/api/repository_files.md +++ b/doc/api/repository_files.md @@ -90,6 +90,8 @@ Like [Get file from repository](repository_files.md#get-file-from-repository) yo ## Create new file in repository +This allows you to create a single file. For creating multiple files with a single request see the [commits API](commits.html#create-a-commit-with-multiple-files-and-actions). + ``` POST /projects/:id/repository/files/:file_path ``` @@ -120,6 +122,8 @@ Parameters: ## Update existing file in repository +This allows you to update a single file. For updating multiple files with a single request see the [commits API](commits.html#create-a-commit-with-multiple-files-and-actions). + ``` PUT /projects/:id/repository/files/:file_path ``` @@ -160,6 +164,8 @@ Currently gitlab-shell has a boolean return code, preventing GitLab from specify ## Delete existing file in repository +This allows you to delete a single file. For deleting multiple files with a singleh request see the [commits API](commits.html#create-a-commit-with-multiple-files-and-actions). + ``` DELETE /projects/:id/repository/files/:file_path ``` |