# Git LFS の REST API エンドポイント

REST API を使用して、リポジトリの Git 大容量ファイルストレージ (LFS) を有効または無効にします。

## Git LFS の概要

Git LFSを使用して、大きなファイルを Git リポジトリに格納できます。 REST API を使うと、個々のリポジトリの機能を有効または無効にすることができます。
Git LFS の詳細については、「[Git Large File Storageについて](/ja/enterprise-cloud@latest/repositories/working-with-files/managing-large-files/about-git-large-file-storage)」を参照してください。

リポジトリに対する管理者アクセス権を持つユーザーは、これらのエンドポイントを使用できます。

Git LFSの使用は課金対象となります。 詳しくは、「[Git Large File Storage の課金](/ja/enterprise-cloud@latest/billing/concepts/product-billing/git-lfs)」をご覧ください。

組織に属するリポジトリでこれらのエンドポイントを使用する場合は、そのリポジトリへの管理アクセス権が必要です（組織の所有者として継承されている可能性があります）。また、自分の役割には、組織の請求情報へのアクセス権も含まれている必要があります。

* リポジトリが GitHub Team上の組織によって所有されている場合は、組織の所有者または課金マネージャーである必要があります。 詳しくは、「[組織の役割](/ja/enterprise-cloud@latest/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#organization-owners)」をご覧ください。
* リポジトリが GitHub Enterprise Cloud にあり、エンタープライズ アカウントが所有していない組織によって所有されている場合は、組織の所有者または課金マネージャーである必要があります。 詳しくは、「[組織の役割](/ja/enterprise-cloud@latest/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#organization-owners)」をご覧ください。
* リポジトリが Enterprise アカウントによって所有されている Organization によって所有されている場合は、Enterprise 所有者または課金マネージャーである必要があります。 詳しくは、「[企業における役割の能力](/ja/enterprise-cloud@latest/admin/managing-accounts-and-repositories/managing-roles-in-your-enterprise/abilities-of-roles#enterprise-owners)」をご覧ください。

> \[!NOTE]
> Most endpoints use `Authorization: Bearer <YOUR-TOKEN>` and `Accept: application/vnd.github+json` headers, plus `X-GitHub-Api-Version: 2026-03-10`. Curl examples below omit these standard headers for brevity.

## Enable Git LFS for a repository

```
PUT /repos/{owner}/{repo}/lfs
```

Enables Git LFS for a repository.
OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint.

### Parameters

#### Headers

* **`accept`** (string)
  Setting to `application/vnd.github+json` is recommended.

#### Path and query parameters

* **`owner`** (string) (required)
  The account owner of the repository. The name is not case sensitive.

* **`repo`** (string) (required)
  The name of the repository without the .git extension. The name is not case sensitive.

### HTTP response status codes

* **202** - Accepted

* **403** - We will return a 403 with one of the following messages:

Git LFS support not enabled because Git LFS is globally disabled.
Git LFS support not enabled because Git LFS is disabled for the root repository in the network.
Git LFS support not enabled because Git LFS is disabled for .

### Code examples

#### Example

**Request:**

```curl
curl -L \
  -X PUT \
  https://api.github.com/repos/OWNER/REPO/lfs
```

**Response schema (Status: 202):**

object

## Disable Git LFS for a repository

```
DELETE /repos/{owner}/{repo}/lfs
```

Disables Git LFS for a repository.
OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint.

### Parameters

#### Headers

* **`accept`** (string)
  Setting to `application/vnd.github+json` is recommended.

#### Path and query parameters

* **`owner`** (string) (required)
  The account owner of the repository. The name is not case sensitive.

* **`repo`** (string) (required)
  The name of the repository without the .git extension. The name is not case sensitive.

### HTTP response status codes

* **204** - No Content

### Code examples

#### Example

**Request:**

```curl
curl -L \
  -X DELETE \
  https://api.github.com/repos/OWNER/REPO/lfs
```

**Response schema (Status: 204):**