diff options
author | dixpac <dino.onex@gmail.com> | 2016-07-27 11:02:49 +0200 |
---|---|---|
committer | dixpac <dino.onex@gmail.com> | 2016-07-28 11:30:56 +0200 |
commit | a4bb9993c45b3d63a3d88f92ffc14bf849c38906 (patch) | |
tree | 08bbe10511be0826ac26d6844d4fc5c7979b7c67 /doc/api/commits.md | |
parent | 17be364d072298f42d77fd22189bf9289b7cda2e (diff) | |
download | gitlab-ce-a4bb9993c45b3d63a3d88f92ffc14bf849c38906.tar.gz |
Add commit stats to commit api response
Diffstat (limited to 'doc/api/commits.md')
-rw-r--r-- | doc/api/commits.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/commits.md b/doc/api/commits.md index 57c2e1d9b87..2960c2ae428 100644 --- a/doc/api/commits.md +++ b/doc/api/commits.md @@ -81,6 +81,11 @@ Example response: "parent_ids": [ "ae1d9fb46aa2b07ee9836d49862ec4e2c46fbbba" ], + "stats": { + "additions": 15, + "deletions": 10, + "total": 25 + }, "status": "running" } ``` |