CRUD for repository files
Create, read, update and delete repository files using this API
Allows you to receive information about file in repository like name, size, content. Note that 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 --request GET --header 'PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK' 'https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb?ref=master'
Example response:
{
"file_name": "key.rb",
"file_path": "app/models/key.rb",
"size": 1476,
"encoding": "base64",
"content": "IyA9PSBTY2hlbWEgSW5mb3...",
"ref": "master",
"blob_id": "79f7bbd25901e8334750839545a9bd021f0e4c83",
"commit_id": "d5a3ff139356ce33e37e73add446f16869741b50",
"last_commit_id": "570e7b2abdd848b95f2f578043fc23bd6f6fd24d"
}
Parameters:
file_path
(required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erbref
(required) - The name of branch, tag or commitGET /projects/:id/repository/files/:file_path/raw
curl --request GET --header 'PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK' 'https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb/raw?ref=master'
Parameters:
file_path
(required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erbref
(required) - The name of branch, tag or commitPOST /projects/:id/repository/files/:file_path
curl --request POST --header 'PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK' 'https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fprojectrb%2E?branch=master&author_email=author%40example.com&author_name=Firstname%20Lastname&content=some%20content&commit_message=create%20a%20new%20file'
Example response:
{
"file_name": "app/project.rb",
"branch": "master"
}
Parameters:
file_path
(required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erbbranch
(required) - The name of branchencoding
(optional) - Change encoding to 'base64'. Default is text.author_email
(optional) - Specify the commit author's email addressauthor_name
(optional) - Specify the commit author's namecontent
(required) - File contentcommit_message
(required) - Commit messagePUT /projects/:id/repository/files/:file_path
curl --request PUT --header 'PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK' 'https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fproject%2Erb?branch=master&author_email=author%40example.com&author_name=Firstname%20Lastname&content=some%20other%20content&commit_message=update%20file'
Example response:
{
"file_name": "app/project.rb",
"branch": "master"
}
Parameters:
file_path
(required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erbbranch
(required) - The name of branchencoding
(optional) - Change encoding to 'base64'. Default is text.author_email
(optional) - Specify the commit author's email addressauthor_name
(optional) - Specify the commit author's namecontent
(required) - New file contentcommit_message
(required) - Commit messagelast_commit_id
(optional) - Last known file commit idIf the commit fails for any reason we return a 400 error with a non-specific error message. Possible causes for a failed commit include:
file_path
contained /../
(attempted directory traversal);Currently gitlab-shell has a boolean return code, preventing GitLab from specifying the error.
DELETE /projects/:id/repository/files/:file_path
curl --request DELETE --header 'PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK' 'https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fproject%2Erb?branch=master&author_email=author%40example.com&author_name=Firstname%20Lastname&commit_message=delete%20file'
Example response:
{
"file_name": "app/project.rb",
"branch": "master"
}
Parameters:
file_path
(required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erbbranch
(required) - The name of branchauthor_email
(optional) - Specify the commit author's email addressauthor_name
(optional) - Specify the commit author's namecommit_message
(required) - Commit messageВы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )