diff options
author | Douwe Maan <douwe@gitlab.com> | 2017-12-21 09:22:32 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2017-12-21 09:22:32 +0000 |
commit | a24b6dbfca310ffa605f87eb376679c3c627e688 (patch) | |
tree | d8941fbf4e79ecb91a0b7b8d046076e4ffad833a /doc/api | |
parent | 0a8fa500f06707ec14a044bdc652aaf0920bf55b (diff) | |
parent | c927e57466b6c705891f09c95f566259d8e1ec0e (diff) | |
download | gitlab-ce-a24b6dbfca310ffa605f87eb376679c3c627e688.tar.gz |
Merge branch '38356-add-last_commit_sha-to-the-commit-api' into 'master'
Add new last_commit_id param for create commit endpoint
Closes #38356
See merge request gitlab-org/gitlab-ce!15922
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/commits.md | 1 | ||||
-rw-r--r-- | doc/api/repository_files.md | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/commits.md b/doc/api/commits.md index 5a4a8d888b3..c9b72d4a1dd 100644 --- a/doc/api/commits.md +++ b/doc/api/commits.md @@ -84,6 +84,7 @@ POST /projects/:id/repository/commits | `previous_path` | string | no | Original full path to the file being moved. Ex. `lib/class1.rb` | | `content` | string | no | File content, required for all except `delete`. Optional for `move` | | `encoding` | string | no | `text` or `base64`. `text` is default. | +| `last_commit_id` | string | no | Last known file commit id. Will be only considered in update, move and delete actions. | ```bash PAYLOAD=$(cat << 'JSON' diff --git a/doc/api/repository_files.md b/doc/api/repository_files.md index c517a38a8ba..a1a0b1b756c 100644 --- a/doc/api/repository_files.md +++ b/doc/api/repository_files.md @@ -151,3 +151,4 @@ Parameters: - `author_email` (optional) - Specify the commit author's email address - `author_name` (optional) - Specify the commit author's name - `commit_message` (required) - Commit message +- `last_commit_id` (optional) - Last known file commit id |