本篇文章为你整理了Repository files API()的详细内容,包含有 Repository files API,希望能帮助你了解 Repository files API。
apiAllows read-write access to the repository files.
read_repositoryAllows read-access to the repository files.Get file from repository
The execute_filemode field in the response was introduced in GitLab 14.10.Allows you to receive information about file in repository like name, size, and
content. File content is Base64 encoded. This endpoint can be accessed
without authentication if the repository is publicly accessible.
GET /projects/:id/repository/files/:file_path
curl --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb?ref=master"
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user.
file_pathstringyesURL encoded full path to new file, such as lib%2Fclass%2Erb.
refstringyesThe name of branch, tag or commit.Example response:
{
"file_name": "key.rb",
"file_path": "app/models/key.rb",
"size": 1476,
"encoding": "base64",
"content": "IyA9PSBTY2hlbWEgSW5mb3...",
"content_sha256": "4c294617b60715c1d218e61164a3abd4808a4284cbc30e6728a01ad9aada4481",
"ref": "master",
"blob_id": "79f7bbd25901e8334750839545a9bd021f0e4c83",
"commit_id": "d5a3ff139356ce33e37e73add446f16869741b50",
"last_commit_id": "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
"execute_filemode": false
blob_id is the blob SHA. Refer to Get a blob from repository
in the Repositories API.In addition to the GET method, you can also use HEAD to get just file metadata.
HEAD /projects/:id/repository/files/:file_path
curl --head --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb?ref=master"
Example response:
HTTP/1.1 200 OK
X-Gitlab-Blob-Id: 79f7bbd25901e8334750839545a9bd021f0e4c83
X-Gitlab-Commit-Id: d5a3ff139356ce33e37e73add446f16869741b50
X-Gitlab-Content-Sha256: 4c294617b60715c1d218e61164a3abd4808a4284cbc30e6728a01ad9aada4481
X-Gitlab-Encoding: base64
X-Gitlab-File-Name: key.rb
X-Gitlab-File-Path: app/models/key.rb
X-Gitlab-Last-Commit-Id: 570e7b2abdd848b95f2f578043fc23bd6f6fd24d
X-Gitlab-Ref: master
X-Gitlab-Size: 1476
X-Gitlab-Execute-Filemode: false
Get file blame from repository
Allows you to receive blame information. Each blame range contains lines and corresponding commit information.
GET /projects/:id/repository/files/:file_path/blame
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user.
file_pathstringyesURL-encoded full path to new file, such aslib%2Fclass%2Erb.
refstringyesThe name of branch, tag or commit.
range[end]integeryesThe last line of the range to blame.
range[start]integeryesThe first line of the range to blame.
rangehashnoBlame range.
curl --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/path%2Fto%2Ffile.rb/blame?ref=master"
Example response:
[
"commit": {
"id": "d42409d56517157c48bf3bd97d3f75974dde19fb",
"message": "Add feature\n\nalso fix bug\n",
"parent_ids": [
"cc6e14f9328fa6d7b5a0d3c30dc2002a3f2a3822"
"authored_date": "2015-12-18T08:12:22.000Z",
"author_name": "John Doe",
"author_email": "john.doe@example.com",
"committed_date": "2015-12-18T08:12:22.000Z",
"committer_name": "John Doe",
"committer_email": "john.doe@example.com"
"lines": [
"require fileutils",
"require open3",
HEAD method returns just file metadata, as in Get file from repository.
curl --head --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/path%2Fto%2Ffile.rb/blame?ref=master"
Example response:
HTTP/1.1 200 OK
X-Gitlab-Blob-Id: 79f7bbd25901e8334750839545a9bd021f0e4c83
X-Gitlab-Commit-Id: d5a3ff139356ce33e37e73add446f16869741b50
X-Gitlab-Content-Sha256: 4c294617b60715c1d218e61164a3abd4808a4284cbc30e6728a01ad9aada4481
X-Gitlab-Encoding: base64
X-Gitlab-File-Name: file.rb
X-Gitlab-File-Path: path/to/file.rb
X-Gitlab-Last-Commit-Id: 570e7b2abdd848b95f2f578043fc23bd6f6fd24d
X-Gitlab-Ref: master
X-Gitlab-Size: 1476
X-Gitlab-Execute-Filemode: false
Examples
To request a blame range, specify range[start] and range[end] parameters with
the starting and ending line numbers of the file.
curl --head --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/path%2Fto%2Ffile.rb/blame?ref=master range[start]=1 range[end]=2"
Example response:
[
"commit": {
"id": "d42409d56517157c48bf3bd97d3f75974dde19fb",
"message": "Add feature\n\nalso fix bug\n",
"parent_ids": [
"cc6e14f9328fa6d7b5a0d3c30dc2002a3f2a3822"
"authored_date": "2015-12-18T08:12:22.000Z",
"author_name": "John Doe",
"author_email": "john.doe@example.com",
"committed_date": "2015-12-18T08:12:22.000Z",
"committer_name": "John Doe",
"committer_email": "john.doe@example.com"
"lines": [
"require fileutils",
"require open3"
Get raw file from repository
GET /projects/:id/repository/files/:file_path/raw
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user.
file_pathstringyesURL-encoded full path to new file, such as lib%2Fclass%2Erb.
refstringyesThe name of branch, tag or commit. Default is the HEAD of the project.
lfsbooleannoDetermines if the response should be Git LFS file contents, rather than the pointer. If the file is not tracked by Git LFS, ignored. Defaults to false.
curl --header "PRIVATE-TOKEN: your_access_token " "https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb/raw?ref=master"
noteLike Get file from repository, you can use HEAD to get just file metadata.Create new file in repository
The execute_filemode parameter was introduced in GitLab 14.10.Allows you to create a single file. For creating multiple files with a single request,
refer to the commits API.
POST /projects/:id/repository/files/:file_path
branchstringyesName of the new branch to create. The commit is added to this branch.
commit_messagestringyesThe commit message.
contentstringyesThe file’s content.
file_pathstringyesURL-encoded full path to new file. For example: lib%2Fclass%2Erb.
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user.
author_emailstringnoThe commit author’s email address.
author_namestringnoThe commit author’s name.
encodingstringnoChange encoding to base64. Default is text.
execute_filemodebooleannoEnables or disables the execute flag on the file. Can be true or false.
start_branchstringnoName of the base branch to create the new branch from.
curl --request POST --header PRIVATE-TOKEN: your_access_token \
--header "Content-Type: application/json" \
--data {"branch": "master", "author_email": "author@example.com", "author_name": "Firstname Lastname",
"content": "some content", "commit_message": "create a new file"} \
"https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fproject%2Erb"
Example response:
{
"file_path": "app/project.rb",
"branch": "master"
Update existing file in repository
The execute_filemode parameter was introduced in GitLab 14.10.Allows you to update a single file. For updating multiple files with a single request,
refer to the commits API.
PUT /projects/:id/repository/files/:file_path
branchstringyesName of the new branch to create. The commit is added to this branch.
commit_messagestringyesThe commit message.
contentstringyesThe file’s content.
file_pathstringyesURL-encoded full path to new file. For example: lib%2Fclass%2Erb.
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user
author_emailstringnoThe commit author’s email address.
author_namestringnoThe commit author’s name.
encodingstringnoChange encoding to base64. Default is text.
execute_filemodebooleannoEnables or disables the execute flag on the file. Can be true or false.
last_commit_idstringnoLast known file commit ID.
start_branchstringnoName of the base branch to create the new branch from.
curl --request PUT --header PRIVATE-TOKEN: your_access_token \
--header "Content-Type: application/json" \
--data {"branch": "master", "author_email": "author@example.com", "author_name": "Firstname Lastname",
"content": "some content", "commit_message": "update file"} \
"https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fproject%2Erb"
Example response:
{
"file_path": "app/project.rb",
"branch": "master"
If the commit fails for any reason we return a 400 Bad Request error with a non-specific
error message. Possible causes for a failed commit include:
The file_path contained /../ (attempted directory traversal).The commit was empty: new file contents were identical to the current file contents.The branch was updated by git push while the file edit was in progress.GitLab Shell has a boolean return code, preventing GitLab from specifying the error.Delete existing file in repository
This allows you to delete a single file. For deleting multiple files with a single request,
refer to the commits API.
DELETE /projects/:id/repository/files/:file_path
branchstringyesName of the new branch to create. The commit is added to this branch.
commit_messagestringyesThe commit message.
file_pathstringyesURL-encoded full path to new file. For example: lib%2Fclass%2Erb.
idinteger or stringyesThe ID or URL-encoded path of the project owned by the authenticated user.
author_emailstringnoThe commit author’s email address.
author_namestringnoThe commit author’s name.
last_commit_idstringnoLast known file commit ID.
start_branchstringnoName of the base branch to create the new branch from.
curl --request DELETE --header PRIVATE-TOKEN: your_access_token \
--header "Content-Type: application/json" \
--data {"branch": "master", "author_email": "author@example.com", "author_name": "Firstname Lastname",
"commit_message": "delete file"} \
"https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fproject%2Erb"
DocsEdit this page
to fix an error or add an improvement in a merge request.
Create an issue
to suggest an improvement to this page.
Show and post comments
to review and give feedback about this page.
ProductCreate an issue
if theres something you dont like about this feature.
Propose functionality
by submitting a feature request.
Join First Look
to help shape new features.
Feature availability and product trialsView pricing
to see all GitLab tiers and features, or to upgrade.
Try GitLab for free
with access to all features for 30 days.
If you want help with something specific and could use community support,
post on the GitLab forum.
For problems setting up or using this feature (depending on your GitLab
subscription).
Request support
以上就是Repository files API()的详细内容,想要了解更多 Repository files API的内容,请持续关注盛行IT软件开发工作室。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。