2014-05-27 08:12:15 -04:00
|
|
|
# Repositories
|
|
|
|
|
2013-02-27 05:24:12 -05:00
|
|
|
## List project repository tags
|
2012-09-21 08:03:50 -04:00
|
|
|
|
|
|
|
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/tags
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
2012-09-21 08:03:50 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "v1.0.0",
|
|
|
|
"commit": {
|
|
|
|
"id": "2695effb5807a22ff3d138d593fd856244e155e7",
|
2014-04-05 02:36:47 -04:00
|
|
|
"parents": [],
|
2012-09-21 08:03:50 -04:00
|
|
|
"tree": "38017f2f189336fe4497e9d230c5bb1bf873f08d",
|
|
|
|
"message": "Initial commit",
|
|
|
|
"author": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"committer": {
|
|
|
|
"name": "Jack Smith",
|
|
|
|
"email": "jack@example.com"
|
|
|
|
},
|
|
|
|
"authored_date": "2012-05-28T04:42:42-07:00",
|
|
|
|
"committed_date": "2012-05-28T04:42:42-07:00"
|
2013-01-28 12:22:44 -05:00
|
|
|
},
|
|
|
|
"protected": null
|
2012-09-21 08:03:50 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2014-05-23 18:58:49 -04:00
|
|
|
## Create a new tag
|
|
|
|
|
|
|
|
Creates new tag in the repository that points to the supplied ref.
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects/:id/repository/tags
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `tag_name` (required) - The name of a tag
|
|
|
|
- `ref` (required) - Create tag using commit SHA, another tag name, or branch name.
|
2014-06-23 21:35:36 -04:00
|
|
|
- `message` (optional) - Creates annotated tag.
|
2014-05-23 18:58:49 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "v1.0.0",
|
2014-09-24 22:30:06 -04:00
|
|
|
"message": "Release 1.0.0",
|
2014-05-23 18:58:49 -04:00
|
|
|
"commit": {
|
|
|
|
"id": "2695effb5807a22ff3d138d593fd856244e155e7",
|
|
|
|
"parents": [],
|
|
|
|
"message": "Initial commit",
|
|
|
|
"authored_date": "2012-05-28T04:42:42-07:00",
|
|
|
|
"author_name": "John Smith",
|
2014-05-26 12:32:52 -04:00
|
|
|
"author email": "john@example.com",
|
2014-05-23 18:58:49 -04:00
|
|
|
"committer_name": "Jack Smith",
|
2014-05-26 12:32:52 -04:00
|
|
|
"committed_date": "2012-05-28T04:42:42-07:00",
|
2014-05-23 18:58:49 -04:00
|
|
|
"committer_email": "jack@example.com"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2014-09-24 22:30:06 -04:00
|
|
|
The message will be `nil` when creating a lightweight tag otherwise
|
|
|
|
it will contain the annotation.
|
2014-05-23 18:58:49 -04:00
|
|
|
|
2014-07-27 13:56:33 -04:00
|
|
|
It returns 200 if the operation succeed. In case of an error,
|
|
|
|
405 with an explaining error message is returned.
|
|
|
|
|
2013-06-06 11:01:03 -04:00
|
|
|
## List repository tree
|
|
|
|
|
|
|
|
Get a list of repository files and directories in a project.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/tree
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `path` (optional) - The path inside repository. Used to get contend of subdirectories
|
|
|
|
- `ref_name` (optional) - The name of a repository branch or tag or if not given the default branch
|
2013-06-06 11:01:03 -04:00
|
|
|
|
|
|
|
```json
|
2014-04-05 02:36:47 -04:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "assets",
|
|
|
|
"type": "tree",
|
|
|
|
"mode": "040000",
|
|
|
|
"id": "6229c43a7e16fcc7e95f923f8ddadb8281d9c6c6"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "contexts",
|
|
|
|
"type": "tree",
|
|
|
|
"mode": "040000",
|
|
|
|
"id": "faf1cdf33feadc7973118ca42d35f1e62977e91f"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "controllers",
|
|
|
|
"type": "tree",
|
|
|
|
"mode": "040000",
|
|
|
|
"id": "95633e8d258bf3dfba3a5268fb8440d263218d74"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Rakefile",
|
|
|
|
"type": "blob",
|
|
|
|
"mode": "100644",
|
|
|
|
"id": "35b2f05cbb4566b71b34554cf184a9d0bd9d46d6"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "VERSION",
|
|
|
|
"type": "blob",
|
|
|
|
"mode": "100644",
|
|
|
|
"id": "803e4a4f3727286c3093c63870c2b6524d30ec4f"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "config.ru",
|
|
|
|
"type": "blob",
|
|
|
|
"mode": "100644",
|
|
|
|
"id": "dfd2d862237323aa599be31b473d70a8a817943b"
|
|
|
|
}
|
|
|
|
]
|
2013-06-06 11:01:03 -04:00
|
|
|
```
|
|
|
|
|
2013-12-23 04:37:38 -05:00
|
|
|
## Raw file content
|
2012-09-21 08:03:50 -04:00
|
|
|
|
2014-08-04 16:32:41 -04:00
|
|
|
Get the raw file contents for a file by commit SHA and path.
|
2012-09-21 08:03:50 -04:00
|
|
|
|
|
|
|
```
|
2013-08-27 21:22:42 -04:00
|
|
|
GET /projects/:id/repository/blobs/:sha
|
2012-09-21 08:03:50 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `sha` (required) - The commit or branch name
|
|
|
|
- `filepath` (required) - The path the file
|
2013-09-26 16:42:49 -04:00
|
|
|
|
2013-12-23 04:37:38 -05:00
|
|
|
## Raw blob content
|
|
|
|
|
2014-08-04 16:32:41 -04:00
|
|
|
Get the raw file contents for a blob by blob SHA.
|
2013-12-23 04:37:38 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/raw_blobs/:sha
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `sha` (required) - The blob SHA
|
2013-12-23 04:37:38 -05:00
|
|
|
|
2013-09-26 16:42:49 -04:00
|
|
|
## Get file archive
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
Get an archive of the repository
|
2013-09-26 16:42:49 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/archive
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
2014-05-26 09:08:22 -04:00
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `sha` (optional) - The commit SHA to download defaults to the tip of the default branch
|
2014-05-26 09:08:22 -04:00
|
|
|
|
|
|
|
## Compare branches, tags or commits
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/compare
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2014-08-15 03:03:18 -04:00
|
|
|
- `id` (required) - The ID of a project
|
|
|
|
- `from` (required) - the commit SHA or branch name
|
|
|
|
- `to` (required) - the commit SHA or branch name
|
2014-05-26 09:08:22 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/compare?from=master&to=feature
|
|
|
|
```
|
|
|
|
|
2014-08-04 16:32:41 -04:00
|
|
|
Response:
|
2014-05-26 09:08:22 -04:00
|
|
|
|
|
|
|
```json
|
2014-05-27 04:16:50 -04:00
|
|
|
|
2014-05-26 09:08:22 -04:00
|
|
|
{
|
|
|
|
"commit": {
|
2014-05-27 04:16:50 -04:00
|
|
|
"id": "12d65c8dd2b2676fa3ac47d955accc085a37a9c1",
|
|
|
|
"short_id": "12d65c8dd2b",
|
|
|
|
"title": "JS fix",
|
2014-05-26 09:08:22 -04:00
|
|
|
"author_name": "Dmitriy Zaporozhets",
|
|
|
|
"author_email": "dmitriy.zaporozhets@gmail.com",
|
2014-05-27 04:16:50 -04:00
|
|
|
"created_at": "2014-02-27T10:27:00+02:00"
|
2014-05-26 09:08:22 -04:00
|
|
|
},
|
|
|
|
"commits": [{
|
2014-05-27 04:16:50 -04:00
|
|
|
"id": "12d65c8dd2b2676fa3ac47d955accc085a37a9c1",
|
|
|
|
"short_id": "12d65c8dd2b",
|
|
|
|
"title": "JS fix",
|
2014-05-26 09:08:22 -04:00
|
|
|
"author_name": "Dmitriy Zaporozhets",
|
|
|
|
"author_email": "dmitriy.zaporozhets@gmail.com",
|
2014-05-27 04:16:50 -04:00
|
|
|
"created_at": "2014-02-27T10:27:00+02:00"
|
2014-05-26 09:08:22 -04:00
|
|
|
}],
|
|
|
|
"diffs": [{
|
2014-05-27 04:16:50 -04:00
|
|
|
"old_path": "files/js/application.js",
|
|
|
|
"new_path": "files/js/application.js",
|
2014-05-26 09:08:22 -04:00
|
|
|
"a_mode": null,
|
2014-05-27 04:16:50 -04:00
|
|
|
"b_mode": "100644",
|
|
|
|
"diff": "--- a/files/js/application.js\n+++ b/files/js/application.js\n@@ -24,8 +24,10 @@\n //= require g.raphael-min\n //= require g.bar-min\n //= require branch-graph\n-//= require highlightjs.min\n-//= require ace/ace\n //= require_tree .\n //= require d3\n //= require underscore\n+\n+function fix() { \n+ alert(\"Fixed\")\n+}",
|
|
|
|
"new_file": false,
|
2014-05-26 09:08:22 -04:00
|
|
|
"renamed_file": false,
|
|
|
|
"deleted_file": false
|
2014-05-27 04:16:50 -04:00
|
|
|
}],
|
|
|
|
"compare_timeout": false,
|
|
|
|
"compare_same_ref": false
|
2014-05-26 09:08:22 -04:00
|
|
|
}
|
|
|
|
```
|
2014-07-02 12:17:56 -04:00
|
|
|
|
|
|
|
## Contributors
|
|
|
|
|
|
|
|
Get repository contributors list
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/contributors
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
2014-08-15 03:03:18 -04:00
|
|
|
|
|
|
|
- `id` (required) - The ID of a project
|
2014-07-02 12:17:56 -04:00
|
|
|
|
|
|
|
Response:
|
|
|
|
|
|
|
|
```
|
|
|
|
[{
|
|
|
|
"name": "Dmitriy Zaporozhets",
|
|
|
|
"email": "dmitriy.zaporozhets@gmail.com",
|
|
|
|
"commits": 117,
|
|
|
|
"additions": 2097,
|
|
|
|
"deletions": 517
|
|
|
|
}, {
|
|
|
|
"name": "Jacob Vosmaer",
|
|
|
|
"email": "contact@jacobvosmaer.nl",
|
|
|
|
"commits": 33,
|
|
|
|
"additions": 338,
|
|
|
|
"deletions": 244
|
|
|
|
}]
|
|
|
|
```
|