[{"data":1,"prerenderedAt":2035},["ShallowReactive",2],{"/ja-jp/blog/a-beginners-guide-to-the-git-reftable-format":3,"navigation-ja-jp":1253,"banner-ja-jp":1683,"footer-ja-jp":1691,"blog-post-authors-ja-jp-Patrick Steinhardt":1933,"blog-related-posts-ja-jp-a-beginners-guide-to-the-git-reftable-format":1948,"blog-promotions-ja-jp":1972,"next-steps-ja-jp":2026},{"id":4,"title":5,"authors":6,"body":8,"category":1230,"date":1231,"description":1232,"extension":1233,"externalUrl":1234,"faq":1234,"featured":158,"heroImage":1235,"meta":1236,"navigation":158,"path":1237,"seo":1238,"slug":1243,"stem":1244,"tags":1245,"template":1250,"updatedDate":1251,"__hash__":1252},"blogPosts/ja-jp/blog/a-beginners-guide-to-the-git-reftable-format.md","初心者向けGit reftableフォーマットガイド",[7],"Patrick Steinhardt",{"type":9,"value":10,"toc":1217},"minimark",[11,22,38,41,46,49,52,74,77,85,88,91,254,257,264,435,442,515,518,521,546,553,603,606,620,623,697,703,706,709,726,733,750,753,761,764,770,773,782,785,788,792,799,814,817,841,846,849,852,855,858,869,875,878,881,884,892,895,898,901,919,922,928,934,994,997,1000,1003,1010,1019,1024,1030,1035,1041,1046,1052,1055,1058,1061,1067,1084,1087,1163,1170,1177,1180,1189,1198,1213],[12,13,14,15,21],"p",{},"最近まで、Gitでの参照の保存方法は、「files」フォーマットだけに限られていましたが、",[16,17,20],"a",{"href":18,"rel":19},"https://about.gitlab.com/ja-jp/blog/whats-new-in-git-2-45-0/",[],"Git 2.45.0の新機能","により、Gitでは参照を「reftable」フォーマットで保存できるようになりました。この新しいフォーマットは、バイナリフォーマットで非常に複雑ですが、その複雑さが「files」フォーマットのいくつかの欠点を解決します。「reftable」フォーマットは、次のような目的で設計されました。",[23,24,25,29,32,35],"ul",{},[26,27,28],"li",{},"単一の参照の検索と参照範囲のイテレーションを、可能な限り効率的かつ迅速に行えるようにする。",[26,30,31],{},"複数の参照が部分的にしか更新されていない中途半端な状態をGitが読み取らないように、一貫した参照の読み取りをサポートする。",[26,33,34],{},"複数の参照の更新がオールオアナッシング型のオペレーションとして実行される、アトミック書き込みをサポートする。",[26,36,37],{},"参照および参照ログの効率的な保存。",[12,39,40],{},"この記事では、「reftable」フォーマットの仕組みを詳しく見ていきます。",[42,43,45],"h2",{"id":44},"gitでの参照の保存方法","Gitでの参照の保存方法",[12,47,48],{},"「reftable」フォーマットについて詳しく掘り下げる前に、まずはGitがこれまで参照をどのように保存してきたのかを簡単に振り返ってみましょう。すでにご存知の方は、このセクションを読み飛ばして構いません。",[12,50,51],{},"Gitリポジトリは、次の重要な2つのデータ構造を追跡します。",[23,53,54,62],{},[26,55,56,61],{},[16,57,60],{"href":58,"rel":59},"https://git-scm.com/book/en/v2/Git-Internals-Git-Objects",[],"オブジェクト","：リポジトリの実際のデータ（コミット、ディレクトリツリー構造、ソースコードを含むblobなど）を格納しています。オブジェクトは互いに参照し合い、オブジェクトグラフを形成します。さらに、各オブジェクトにはオブジェクトIDがあり、そのオブジェクトを一意に識別します。",[26,63,64,65,69,70,73],{},"参照：ブランチやタグなどがあります。これらはオブジェクトグラフへのポインタであり、オブジェクトに覚えやすい名前を付けたり、開発履歴の異なるトラックを追跡するのに使われます。たとえば、リポジトリには",[66,67,68],"code",{},"main","ブランチが含まれている場合があり、これは特定のコミットを指し示す",[66,71,72],{},"refs/heads/main","という名前の参照です。",[12,75,76],{},"参照は、参照データベースに保存されます。Git 2.45.0までは、「files」データベースフォーマットのみが存在していました。このフォーマットでは、各参照が通常のファイルとして保存され、そのファイルには次のいずれかが含まれます。",[23,78,79,82],{},[26,80,81],{},"通常の参照：指し示すコミットのオブジェクトIDが保存されています。",[26,83,84],{},"シンボリック参照：別の参照の名前が保存されています。これは、シンボリックリンクが別のファイルを指し示すのと似ています。",[12,86,87],{},"定期的に、これらの参照は検索を効率化するために1つのpacked-refsファイルにまとめられます。",[12,89,90],{},"次の例は、「files」フォーマットがどのように動作するかを示しています。",[92,93,98],"pre",{"className":94,"code":95,"language":96,"meta":97,"style":97},"language-shell shiki shiki-themes github-light","$ git init .\n$ git commit --allow-empty --message \"Initial commit\"\n[main (root-commit) 6917c17] Initial commit\n\n# HEADはrefs/heads/mainを指すシンボリック参照です。\n$ cat .git/HEAD\nref: refs/heads/main\n\n# refs/heads/mainはコミットを指す通常の参照です。\n$ cat .git/refs/heads/main\n6917c178cfc3c50215a82cf959204e9934af24c8\n\n# git-pack-refs(1)はこれらの参照をpacked-refsファイルにパック化します。\n$ git pack-refs --all\n$ cat .git/packed-refs\n# pack-refs with: peeled fully-peeled sorted\n","shell","",[66,99,100,119,139,153,160,167,178,187,192,198,208,214,219,225,238,248],{"__ignoreMap":97},[101,102,105,109,113,116],"span",{"class":103,"line":104},"line",1,[101,106,108],{"class":107},"s7eDp","$",[101,110,112],{"class":111},"sYBdl"," git",[101,114,115],{"class":111}," init",[101,117,118],{"class":111}," .\n",[101,120,122,124,126,129,133,136],{"class":103,"line":121},2,[101,123,108],{"class":107},[101,125,112],{"class":111},[101,127,128],{"class":111}," commit",[101,130,132],{"class":131},"sYu0t"," --allow-empty",[101,134,135],{"class":131}," --message",[101,137,138],{"class":111}," \"Initial commit\"\n",[101,140,142,146,150],{"class":103,"line":141},3,[101,143,145],{"class":144},"sgsFI","[main (root",[101,147,149],{"class":148},"sD7c4","-",[101,151,152],{"class":144},"commit) 6917c17] Initial commit\n",[101,154,156],{"class":103,"line":155},4,[101,157,159],{"emptyLinePlaceholder":158},true,"\n",[101,161,163],{"class":103,"line":162},5,[101,164,166],{"class":165},"sAwPA","# HEADはrefs/heads/mainを指すシンボリック参照です。\n",[101,168,170,172,175],{"class":103,"line":169},6,[101,171,108],{"class":107},[101,173,174],{"class":111}," cat",[101,176,177],{"class":111}," .git/HEAD\n",[101,179,181,184],{"class":103,"line":180},7,[101,182,183],{"class":107},"ref:",[101,185,186],{"class":111}," refs/heads/main\n",[101,188,190],{"class":103,"line":189},8,[101,191,159],{"emptyLinePlaceholder":158},[101,193,195],{"class":103,"line":194},9,[101,196,197],{"class":165},"# refs/heads/mainはコミットを指す通常の参照です。\n",[101,199,201,203,205],{"class":103,"line":200},10,[101,202,108],{"class":107},[101,204,174],{"class":111},[101,206,207],{"class":111}," .git/refs/heads/main\n",[101,209,211],{"class":103,"line":210},11,[101,212,213],{"class":107},"6917c178cfc3c50215a82cf959204e9934af24c8\n",[101,215,217],{"class":103,"line":216},12,[101,218,159],{"emptyLinePlaceholder":158},[101,220,222],{"class":103,"line":221},13,[101,223,224],{"class":165},"# git-pack-refs(1)はこれらの参照をpacked-refsファイルにパック化します。\n",[101,226,228,230,232,235],{"class":103,"line":227},14,[101,229,108],{"class":107},[101,231,112],{"class":111},[101,233,234],{"class":111}," pack-refs",[101,236,237],{"class":131}," --all\n",[101,239,241,243,245],{"class":103,"line":240},15,[101,242,108],{"class":107},[101,244,174],{"class":111},[101,246,247],{"class":111}," .git/packed-refs\n",[101,249,251],{"class":103,"line":250},16,[101,252,253],{"class":165},"# pack-refs with: peeled fully-peeled sorted\n",[42,255,256],{"id":256},"reftableフォーマットの構造概要",[12,258,259,260,263],{},"Git 2.45.0以降がインストールされている場合、",[66,261,262],{},"--ref-format=reftable","スイッチを使用して「reftable」フォーマットでリポジトリを作成できます。",[92,265,267],{"className":94,"code":266,"language":96,"meta":97,"style":97},"$ git init --ref-format=reftable .\nInitialized empty Git repository in /tmp/repo/.git/\n$ git rev-parse --show-ref-format\nreftable\n\n# わかりやすくするために不要なファイルを削除しています。\n$ tree .git\n.git\n├── config\n├── HEAD\n├── index\n├── objects\n├── refs\n│   └── heads\n└── reftable\n    ├── 0x000000000001-0x000000000002-40a482a9.ref\n    └── tables.list\n\n4 directories, 6 files\n",[66,268,269,282,302,314,319,323,328,338,343,351,358,365,372,379,390,398,406,415,420],{"__ignoreMap":97},[101,270,271,273,275,277,280],{"class":103,"line":104},[101,272,108],{"class":107},[101,274,112],{"class":111},[101,276,115],{"class":111},[101,278,279],{"class":131}," --ref-format=reftable",[101,281,118],{"class":111},[101,283,284,287,290,293,296,299],{"class":103,"line":121},[101,285,286],{"class":107},"Initialized",[101,288,289],{"class":111}," empty",[101,291,292],{"class":111}," Git",[101,294,295],{"class":111}," repository",[101,297,298],{"class":111}," in",[101,300,301],{"class":111}," /tmp/repo/.git/\n",[101,303,304,306,308,311],{"class":103,"line":141},[101,305,108],{"class":107},[101,307,112],{"class":111},[101,309,310],{"class":111}," rev-parse",[101,312,313],{"class":131}," --show-ref-format\n",[101,315,316],{"class":103,"line":155},[101,317,318],{"class":107},"reftable\n",[101,320,321],{"class":103,"line":162},[101,322,159],{"emptyLinePlaceholder":158},[101,324,325],{"class":103,"line":169},[101,326,327],{"class":165},"# わかりやすくするために不要なファイルを削除しています。\n",[101,329,330,332,335],{"class":103,"line":180},[101,331,108],{"class":107},[101,333,334],{"class":111}," tree",[101,336,337],{"class":111}," .git\n",[101,339,340],{"class":103,"line":189},[101,341,342],{"class":107},".git\n",[101,344,345,348],{"class":103,"line":194},[101,346,347],{"class":107},"├──",[101,349,350],{"class":111}," config\n",[101,352,353,355],{"class":103,"line":200},[101,354,347],{"class":107},[101,356,357],{"class":111}," HEAD\n",[101,359,360,362],{"class":103,"line":210},[101,361,347],{"class":107},[101,363,364],{"class":111}," index\n",[101,366,367,369],{"class":103,"line":216},[101,368,347],{"class":107},[101,370,371],{"class":111}," objects\n",[101,373,374,376],{"class":103,"line":221},[101,375,347],{"class":107},[101,377,378],{"class":111}," refs\n",[101,380,381,384,387],{"class":103,"line":227},[101,382,383],{"class":107},"│",[101,385,386],{"class":111},"   └──",[101,388,389],{"class":111}," heads\n",[101,391,392,395],{"class":103,"line":240},[101,393,394],{"class":107},"└──",[101,396,397],{"class":111}," reftable\n",[101,399,400,403],{"class":103,"line":250},[101,401,402],{"class":107},"    ├──",[101,404,405],{"class":111}," 0x000000000001-0x000000000002-40a482a9.ref\n",[101,407,409,412],{"class":103,"line":408},17,[101,410,411],{"class":107},"    └──",[101,413,414],{"class":111}," tables.list\n",[101,416,418],{"class":103,"line":417},18,[101,419,159],{"emptyLinePlaceholder":158},[101,421,423,426,429,432],{"class":103,"line":422},19,[101,424,425],{"class":107},"4",[101,427,428],{"class":111}," directories,",[101,430,431],{"class":131}," 6",[101,433,434],{"class":111}," files\n",[12,436,437,438,441],{},"まず、リポジトリの設定を見ると、それには",[66,439,440],{},"extension.refstorage","キーがあります。",[92,443,445],{"className":94,"code":444,"language":96,"meta":97,"style":97},"$ cat .git/config\n[core]\n    repositoryformatversion = 1\n    filemode = true\n    bare = false\n    logallrefupdates = true\n[extensions]\n    refstorage = reftable\n",[66,446,447,456,461,472,482,492,501,506],{"__ignoreMap":97},[101,448,449,451,453],{"class":103,"line":104},[101,450,108],{"class":107},[101,452,174],{"class":111},[101,454,455],{"class":111}," .git/config\n",[101,457,458],{"class":103,"line":121},[101,459,460],{"class":144},"[core]\n",[101,462,463,466,469],{"class":103,"line":141},[101,464,465],{"class":107},"    repositoryformatversion",[101,467,468],{"class":111}," =",[101,470,471],{"class":131}," 1\n",[101,473,474,477,479],{"class":103,"line":155},[101,475,476],{"class":107},"    filemode",[101,478,468],{"class":111},[101,480,481],{"class":131}," true\n",[101,483,484,487,489],{"class":103,"line":162},[101,485,486],{"class":107},"    bare",[101,488,468],{"class":111},[101,490,491],{"class":131}," false\n",[101,493,494,497,499],{"class":103,"line":169},[101,495,496],{"class":107},"    logallrefupdates",[101,498,468],{"class":111},[101,500,481],{"class":131},[101,502,503],{"class":103,"line":180},[101,504,505],{"class":144},"[extensions]\n",[101,507,508,511,513],{"class":103,"line":189},[101,509,510],{"class":107},"    refstorage",[101,512,468],{"class":111},[101,514,397],{"class":111},[12,516,517],{},"この設定は、リポジトリが「reftable」フォーマットで初期化されており、「reftable」バックエンドを使用してアクセスするようGitに指示するものです。",[12,519,520],{},"不思議なことに、このリポジトリにはまだ「files」バックエンドが使われているかのように見えるいくつかのファイルがあります。",[23,522,523,536],{},[26,524,525,528,529,531,532,535],{},[66,526,527],{},"HEAD","は通常、現在チェックアウト済みのブランチを指すシンボリック参照です。「reftable」バックエンドでは使用されませんが、GitクライアントがディレクトリをGitリポジトリとして検出するために必要です。したがって、「reftable」フォーマットを使用する場合、",[66,530,527],{},"は",[66,533,534],{},"ref: refs/heads/.invalid","という内容のスタブになります。",[26,537,538,541,542,545],{},[66,539,540],{},"refs/heads","は、",[66,543,544],{},"this repository uses the reftable format","という内容が書かれているファイルです。「reftable」フォーマットを認識できないGitクライアントは、このパスがディレクトリであると想定します。したがって、このパスをファイルとして作成することで、古いGitクライアントが「files」バックエンドでリポジトリにアクセスしようとすると、意図的に失敗するようになります。",[12,547,548,549,552],{},"実際の参照は、次のように",[66,550,551],{},"reftable/","ディレクトリに保存されます。",[92,554,556],{"className":94,"code":555,"language":96,"meta":97,"style":97},"$ tree .git/reftable\n.git/reftable/\n├── 0x000000000001-0x000000000001-794bd722.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000001-794bd722.ref\n",[66,557,558,567,572,579,585,589,598],{"__ignoreMap":97},[101,559,560,562,564],{"class":103,"line":104},[101,561,108],{"class":107},[101,563,334],{"class":111},[101,565,566],{"class":111}," .git/reftable\n",[101,568,569],{"class":103,"line":121},[101,570,571],{"class":107},".git/reftable/\n",[101,573,574,576],{"class":103,"line":141},[101,575,347],{"class":107},[101,577,578],{"class":111}," 0x000000000001-0x000000000001-794bd722.ref\n",[101,580,581,583],{"class":103,"line":155},[101,582,394],{"class":107},[101,584,414],{"class":111},[101,586,587],{"class":103,"line":162},[101,588,159],{"emptyLinePlaceholder":158},[101,590,591,593,595],{"class":103,"line":169},[101,592,108],{"class":107},[101,594,174],{"class":111},[101,596,597],{"class":111}," .git/reftable/tables.list\n",[101,599,600],{"class":103,"line":180},[101,601,602],{"class":107},"0x000000000001-0x000000000001-794bd722.ref\n",[12,604,605],{},"ここには、次の2つのファイルがあります。",[23,607,608,614],{},[26,609,610,613],{},[66,611,612],{},"0x000000000001-0x000000000001-794bd722.ref","は、参照と参照ログデータをバイナリフォーマットで含むテーブルです。",[26,615,616,619],{},[66,617,618],{},"tables.list","は、テーブルのリストです。リポジトリの現在の状態では、このファイルにはテーブルの名前の1行だけが含まれています。このファイルは「reftable」データベースにある現在有効なテーブルをまとめて追跡し、新しいテーブルがリポジトリに追加されるたびに更新されます。",[12,621,622],{},"次のように、参照を更新すると、新しいテーブルが作成されます。",[92,624,626],{"className":94,"code":625,"language":96,"meta":97,"style":97},"$ git commit --allow-empty --message \"Initial commit\"\n[main (root-commit) 1472a58] Initial commit\n\n$ tree .git/reftable\n.git/reftable/\n├── 0x000000000001-0x000000000002-eb87d12b.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000002-eb87d12b.ref\n",[66,627,628,642,651,655,663,667,674,680,684,692],{"__ignoreMap":97},[101,629,630,632,634,636,638,640],{"class":103,"line":104},[101,631,108],{"class":107},[101,633,112],{"class":111},[101,635,128],{"class":111},[101,637,132],{"class":131},[101,639,135],{"class":131},[101,641,138],{"class":111},[101,643,644,646,648],{"class":103,"line":121},[101,645,145],{"class":144},[101,647,149],{"class":148},[101,649,650],{"class":144},"commit) 1472a58] Initial commit\n",[101,652,653],{"class":103,"line":141},[101,654,159],{"emptyLinePlaceholder":158},[101,656,657,659,661],{"class":103,"line":155},[101,658,108],{"class":107},[101,660,334],{"class":111},[101,662,566],{"class":111},[101,664,665],{"class":103,"line":162},[101,666,571],{"class":107},[101,668,669,671],{"class":103,"line":169},[101,670,347],{"class":107},[101,672,673],{"class":111}," 0x000000000001-0x000000000002-eb87d12b.ref\n",[101,675,676,678],{"class":103,"line":180},[101,677,394],{"class":107},[101,679,414],{"class":111},[101,681,682],{"class":103,"line":189},[101,683,159],{"emptyLinePlaceholder":158},[101,685,686,688,690],{"class":103,"line":194},[101,687,108],{"class":107},[101,689,174],{"class":111},[101,691,597],{"class":111},[101,693,694],{"class":103,"line":200},[101,695,696],{"class":107},"0x000000000001-0x000000000002-eb87d12b.ref\n",[12,698,699,700,702],{},"ご覧のとおり、以前のテーブルは新しいテーブルに置き換えられました。さらに、",[66,701,618],{},"ファイルが更新され、新しいテーブルが取り込まれました。",[42,704,705],{"id":705},"テーブルの構造",[12,707,708],{},"前述のとおり、参照データベースの実際のデータはテーブルに含まれています。テーブルは大まかに次のような複数のセクションに分かれています。",[23,710,711,714,717,720,723],{},[26,712,713],{},"header：テーブルに関するメタデータが含まれています。これには、フォーマットのバージョン、ブロックサイズ、およびリポジトリで使用されるハッシュ関数（SHA1、SHA256など）が、他の情報と一緒に含まれています。",[26,715,716],{},"ref：参照が含まれています。これらのレコードは参照名と等しいキーを有し、通常の参照の場合はオブジェクトIDを、シンボリック参照の場合は他の参照を指します。",[26,718,719],{},"obj：オブジェクトIDからそれらのオブジェクトIDを指す参照への逆マッピングが含まれています。これにより、Gitは特定のオブジェクトIDを指す参照を効率的に検索できます。",[26,721,722],{},"log：参照ログエントリが含まれています。これらのレコードは、参照名にログエントリの番号を表すインデックスを付け足したものと等しいキーを有し、 さらに、古いオブジェクトIDと新しいオブジェクトID、およびその参照ログエントリのメッセージを含みます。",[26,724,725],{},"footer：各セクションへのオフセットが含まれます。",[12,727,728],{},[729,730],"img",{"alt":731,"src":732},"すべてのreftableセクションを含んだ縦長の表","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_1_-_Reftable_overview.svg",[12,734,735,736,739,740,743,744,746,747,749],{},"各セクションのタイプは、似たような構造を持っています。セクションには一連のレコードが含まれており、各レコードのキーでソートされています。たとえば、 ",[66,737,738],{},"refs/heads/aaaaa","と ",[66,741,742],{},"refs/heads/bbb","という2つの参照レコードがある場合、これらの参照名がそれぞれのキーとなり、",[66,745,738],{},"が",[66,748,742],{},"よりも前に来ます。",[12,751,752],{},"さらに、各セクションは固定長のブロックに分割されています。このブロックの長さはヘッダー（header）にエンコードされており、次の2つの目的を果たします。",[23,754,755,758],{},[26,756,757],{},"セクションの開始位置とブロックサイズに基づき、リーダー（reader）は各ブロックの開始位置を暗に認識します。これにより、Gitは先行するブロックを読み込むことなくセクションの途中に簡単に移動できるため、ブロック上でのバイナリ検索が可能になり、レコードの検索を高速化します。",[26,759,760],{},"一度に読み込むディスクデータの量をリーダーが認識できるようにします。このために、ブロックサイズはデフォルトで4KiBに設定されており、これはハードディスクのセクターサイズとしては最も一般的です。最大ブロックサイズは16MBです。",[12,762,763],{},"たとえば、「ref」セクションを覗いてみると、おおよそ次の図のようになります。ここで留意すべき点は、レコードがブロック内で、そしてブロック間の両方で辞書順に並んでいることです。",[12,765,766],{},[729,767],{"alt":768,"src":769},"未圧縮参照ブロック","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_2_-_Ref_block_uncompressed.svg",[12,771,772],{},"現在の情報を基に、次の手順でレコードを検索できます。",[774,775,776,779],"ol",{},[26,777,778],{},"各ブロックの最初のレコードのキーを確認してバイナリ検索を行い、目的のレコードが含まれているブロックを特定します。",[26,780,781],{},"特定したブロック内で線形検索を行い、目的のレコードを特定します。",[12,783,784],{},"この手順はまだ少し非効率です。多くのブロックがある場合、目的のブロックを特定するためにバイナリ検索で対数的に多くのブロックを読み込むことが必要になる場合があります。また、ブロックに多数のレコードが含まれている場合、線形検索中にすべてのレコードの読み込みが必要になる可能性もあります。",[12,786,787],{},"「reftable」フォーマットには、これらのパフォーマンス問題に対処する追加のメカニズムが組み込まれています。後のセクションでこれらについて詳しく説明します。",[789,790,791],"h3",{"id":791},"プレフィックス圧縮",[12,793,794,795,798],{},"お気づきかもしれませんが、すべてのレコードキーには",[66,796,797],{},"refs/","という共通のプレフィックスがあります。これはGitでは一般的です。",[23,800,801,808],{},[26,802,803,804,807],{},"すべてのブランチは",[66,805,806],{},"refs/heads/","で始まります。",[26,809,810,811,807],{},"すべてのタグは",[66,812,813],{},"refs/tags /",[12,815,816],{},"したがって、後続のレコードもキーの大部分で共通のプレフィックスを持つことが予想されます。これを利用して、貴重なディスク容量を節約できます。ほとんどのキーが共通のプレフィックスを持つことがわかっているため、これを最適化するのは理にかなっています。",[12,818,819,820,823,824,827,828,831,832,834,835,837,838,840],{},"この最適化にはプレフィックス圧縮を使用します。各レコードは、前のレコードのキーから何バイトを再利用するかを示すプレフィックスの長さがエンコードされています。たとえば、",[66,821,822],{},"refs/heads/a","と",[66,825,826],{},"refs/heads/b","という2つのレコードがある場合、後者はプレフィックスの長さを11バイトとしてエンコードし、サフィックスとして",[66,829,830],{},"b","だけを保存します。その後、リーダーは",[66,833,822],{},"の最初の11バイト（",[66,836,806],{},"）を取得し、サフィックス",[66,839,830],{},"を追加します。",[12,842,843],{},[729,844],{"alt":791,"src":845},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_3_-_Ref_block_prefix_compression.svg",[789,847,848],{"id":848},"再起点",[12,850,851],{},"前述のように、現在の「reftable」フォーマットの理解に基づいてブロック内の参照を検索する最適な方法は、線形検索です。これは、レコードが固定長ではないため、ブロックの先頭からスキャンしないとレコードの開始位置を特定できないためです。また、レコードが固定長であったとしても、レフィックス圧縮があるため、先行するレコードを読み込む必要があり、ブロックの途中に直接移動はできません。\nしかし、ブロックには数百から数千のレコードが含まれる可能性があり、線形検索は非常に非効率です。この問題に対処するために、「reftable」フォーマットは各ブロックに「再起点」と呼ばれるポイントをエンコードします。再起点は圧縮されていないレコードであり、ここではプレフィックス圧縮がリセットされます。したがって、再起点のレコードは常に完全なキーを含んでおり、先行するレコードをスキップしながら直接移動してレコードを読み込むことが可能になります。これらの再起点は各ブロックのフッターにリストされています。",[12,853,854],{},"この情報を用いることで、ブロック全体を線形検索する必要がなくなります。代わりに、再起点のバイナリ検索を行い、目的のキーより大きい最初の再起点を探します。そこから、目的のレコードが_前の_再起点から特定された再起点までのセクションに存在することがわかります。",[12,856,857],{},"したがって、レコードを検索する最初の手順（ブロックのバイナリ検索、レコードの線形検索）は次のようになります。",[774,859,860,863,866],{},[26,861,862],{},"ブロックのバイナリ検索を行い、目的のレコードが含まれるブロックを特定します。",[26,864,865],{},"再起点のバイナリ検索を行い、目的のレコードが含まれるブロックのサブセクションを特定します。",[26,867,868],{},"特定したサブセクション内でレコードの線形検索を行います。",[12,870,871],{},[729,872],{"alt":873,"src":874},"レコードの線形検索","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_4_-_Restart_points.svg",[789,876,877],{"id":877},"インデックス",[12,879,880],{},"ブロック内のレコードの検索はかなり効率化されましたが、ブロック自体の位置を特定するのはまだ効率的とはいえません。数個のブロックであればバイナリ検索でも十分に効率的です。しかし、数百万もの参照を含むリポジトリには数百から数千のブロックが存在します。この場合、追加のデータ構造がなければ、平均して対数的に多くのディスクアクセスが必要になります。",[12,882,883],{},"この問題を避けるために、各セクションの後にブロックを効率的に検索するためのインデックスセクションを追加できます。各インデックスレコードには次の情報が含まれます。",[23,885,886,889],{},[26,887,888],{},"インデックス化されているブロックの位置。",[26,890,891],{},"インデックス化されているブロックの最後のレコードのキー。",[12,893,894],{},"3つ以下のブロックであれば、バイナリ検索は最大2回のディスク読み取りで目的のブロックを特定できます。この読み取り回数は、インデックスを使用する場合も同じです。具体的には、インデックス自体を読み取るための1回と、目的のブロックを読む取るための1回です。したがって、インデックスは実際に読み取り回数を減らす場合、つまりインデックス化されたブロックが4つ以上ある場合にのみ作成されます。",[12,896,897],{},"次の疑問は、インデックス自体が複数のブロックにまたがるほど大きくなった場合はどうすべきかという点です。その答えは、そのインデックスをインデックス化するために別のインデックスを作成するというものです。この複数階層のインデックスは、数十万もの参照があるリポジトリでのみ必要となります。",[12,899,900],{},"次のインデックスを使用することで、レコードの検索手順をさらに効率化できます。",[774,902,903,914,917],{},[26,904,905,906],{},"テーブルのフッターを見てインデックスがあるかどうかを確認します。\n",[23,907,908,911],{},[26,909,910],{},"インデックスがあれば、バイナリ検索を行い、目的のブロックを特定します。このブロックがインデックスブロック自体を指している場合は、目的のレコードタイプに到達するまでこの手順を繰り返します。",[26,912,913],{},"インデックスがなければ、先ほどのようにブロックのバイナリ検索を行います。",[26,915,916],{},"再起点のバイナリ検索を行い、目的のレコードが含まれているブロックのサブセクションを特定します。",[26,918,868],{},[42,920,921],{"id":921},"複数のテーブル",[12,923,924,925,927],{},"ここまでは、単一のテーブルを読み取る方法について説明してきましたが、",[66,926,618],{},"という名前が示すように、「reftable」データベースには複数のテーブルを格納できます。",[12,929,930,931,933],{},"リポジトリ内の参照を更新するたびに、新しいテーブルが作成され、",[66,932,618],{},"に追加されます。したがって、最終的には次のように複数のテーブルが存在することになります。",[92,935,937],{"className":94,"code":936,"language":96,"meta":97,"style":97},"$ tree .git/reftable/\n.git/reftable/\n├── 0x000000000001-0x000000000007-8dcd8a77.ref\n├── 0x000000000008-0x000000000008-30e0f6f6.ref\n└── tables.list\n\n$ cat .git/reftable/tables.list\n0x000000000001-0x000000000007-8dcd8a77.ref\n0x000000000008-0x000000000008-30e0f6f6.ref\n",[66,938,939,948,952,959,966,972,976,984,989],{"__ignoreMap":97},[101,940,941,943,945],{"class":103,"line":104},[101,942,108],{"class":107},[101,944,334],{"class":111},[101,946,947],{"class":111}," .git/reftable/\n",[101,949,950],{"class":103,"line":121},[101,951,571],{"class":107},[101,953,954,956],{"class":103,"line":141},[101,955,347],{"class":107},[101,957,958],{"class":111}," 0x000000000001-0x000000000007-8dcd8a77.ref\n",[101,960,961,963],{"class":103,"line":155},[101,962,347],{"class":107},[101,964,965],{"class":111}," 0x000000000008-0x000000000008-30e0f6f6.ref\n",[101,967,968,970],{"class":103,"line":162},[101,969,394],{"class":107},[101,971,414],{"class":111},[101,973,974],{"class":103,"line":169},[101,975,159],{"emptyLinePlaceholder":158},[101,977,978,980,982],{"class":103,"line":180},[101,979,108],{"class":107},[101,981,174],{"class":111},[101,983,597],{"class":111},[101,985,986],{"class":103,"line":189},[101,987,988],{"class":107},"0x000000000001-0x000000000007-8dcd8a77.ref\n",[101,990,991],{"class":103,"line":194},[101,992,993],{"class":107},"0x000000000008-0x000000000008-30e0f6f6.ref\n",[12,995,996],{},"リポジトリの実際の状態を読み取るためには、これらの複数のテーブルを単一の仮想テーブルにマージする必要があります。",[12,998,999],{},"ここで疑問が生じます。それは、参照が更新されるたびにテーブルが作成され、同じ参照が複数回更新される場合、「reftable」フォーマットは特定の参照の最新の値をどのように把握するのか、ということです。直感的には、最新のテーブルに含まれる参照の値が最新であると仮定できます。",[12,1001,1002],{},"実際には、各レコードには「更新インデックス」と呼ばれるものがあり、これがレコードの「優先度」をエンコードしています。たとえば、同じ名前の2つの参照レコードが存在する場合、更新インデックスが高い方が低い方を上書きします。",[12,1004,1005,1006,1009],{},"これらの更新インデックスは、上のファイル構造で確認できます。長い16進文字列（例：",[66,1007,1008],{},"0x000000000001","）が更新インデックスであり、テーブル名の左側がテーブルに含まれる最小の更新インデックス、そして右側が最大の更新インデックスを示しています。",[12,1011,1012,1013,1018],{},"テーブルのマージは、参照レコードのキーと更新インデックスによって順序付けられた",[16,1014,1017],{"href":1015,"rel":1016},"https://en.wikipedia.org/wiki/Priority_queue",[],"優先キュー","を介して行われます。すべての参照レコードをスキャンする場合、次の手順で行います。",[774,1020,1021],{},[26,1022,1023],{},"各テーブルの最初のレコードを優先キューに追加します。",[12,1025,1026],{},[729,1027],{"alt":1028,"src":1029},"優先キューに最初のレコードを追加する","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_5_-_Priority_queue_1.svg",[774,1031,1032],{"start":121},[26,1033,1034],{},"優先キューの先頭を取り出します。このキューは更新インデックス順に並んでいるため、先頭にあるレコードは最新のバージョンでなければなりません。そのテーブルの次の項目を優先キューに追加します。",[12,1036,1037],{},[729,1038],{"alt":1039,"src":1040},"優先キューの先頭を取り出す","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_6_-_Priority_queue_2.svg",[774,1042,1043],{"start":141},[26,1044,1045],{},"同じ名前を持つすべてのレコードをキューから削除します。これらのレコードは上書きされているため表示されません。レコードを削除した各テーブルについては、その次のレコードを優先キューに追加します。",[12,1047,1048],{},[729,1049],{"alt":1050,"src":1051},"同じ名前を持つすべてのレコードをキューから削除する","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749675179/Blog/Content%20Images/Frame_7_-_Priority_queue_3.svg",[12,1053,1054],{},"これを繰り返して、他のキーのレコードを読み取ります。",[12,1056,1057],{},"テーブルには、レコードが削除されたことを示す特殊な「トゥームストーン」レコードが含まれている場合があります。このように、すべてのテーブルを書き換えることなく、レコードを削除できます。",[789,1059,1060],{"id":1060},"自動圧縮",[12,1062,1063,1064,1066],{},"優先キューの考え方はシンプルですが、このアプローチでは、マージするテーブルの数が数百個、あるいは数十個であっても、非常に非効率になります。参照を更新するたびに新しいテーブルが",[66,1065,618],{},"ファイルに付加されるのは事実ですが、他にも重要な特徴があります。",[12,1068,1069,1070,1075,1076,1079,1080,1083],{},"それが、自動圧縮です。新しいテーブルがテーブルリストに付加された後、「reftable」バックエンドは一部のテーブルをマージする必要があるかどうかを確認します。これは、シンプルなルールを使って行われます。具体的には、テーブルのリストがファイルサイズの",[16,1071,1074],{"href":1072,"rel":1073},"https://en.wikipedia.org/wiki/Geometric_progression",[],"幾何数列","を形成しているかどうかをチェックします。すべてのテーブル",[66,1077,1078],{},"n","は、その次に新しいテーブル",[66,1081,1082],{},"n+1","の2倍以上のサイズでなければなりません。この幾何数列が維持されなかった場合、バックエンドはテーブルを圧縮して幾何数列を復元します。",[12,1085,1086],{},"時間が経つにつれて、次のような構造になります。",[92,1088,1090],{"className":94,"code":1089,"language":96,"meta":97,"style":97},"$ du --apparent-size .git/reftable/*\n429    .git/reftable/0x000000000001-0x00000000bd7c-d9819000.ref\n101    .git/reftable/0x00000000bd7d-0x00000000c5ac-c34b88a4.ref\n32    .git/reftable/0x00000000c5ad-0x00000000cc6c-60391f53.ref\n8    .git/reftable/0x00000000cc6d-0x00000000cdc1-61c30db1.ref\n3    .git/reftable/0x00000000cdc2-0x00000000ce67-d9b55a96.ref\n1    .git/reftable/0x00000000ce68-0x00000000ce6b-44721696.ref\n1    .git/reftable/tables.list\n",[66,1091,1092,1108,1116,1124,1132,1140,1148,1156],{"__ignoreMap":97},[101,1093,1094,1096,1099,1102,1105],{"class":103,"line":104},[101,1095,108],{"class":107},[101,1097,1098],{"class":111}," du",[101,1100,1101],{"class":131}," --apparent-size",[101,1103,1104],{"class":111}," .git/reftable/",[101,1106,1107],{"class":131},"*\n",[101,1109,1110,1113],{"class":103,"line":121},[101,1111,1112],{"class":107},"429",[101,1114,1115],{"class":111},"    .git/reftable/0x000000000001-0x00000000bd7c-d9819000.ref\n",[101,1117,1118,1121],{"class":103,"line":141},[101,1119,1120],{"class":107},"101",[101,1122,1123],{"class":111},"    .git/reftable/0x00000000bd7d-0x00000000c5ac-c34b88a4.ref\n",[101,1125,1126,1129],{"class":103,"line":155},[101,1127,1128],{"class":107},"32",[101,1130,1131],{"class":111},"    .git/reftable/0x00000000c5ad-0x00000000cc6c-60391f53.ref\n",[101,1133,1134,1137],{"class":103,"line":162},[101,1135,1136],{"class":107},"8",[101,1138,1139],{"class":111},"    .git/reftable/0x00000000cc6d-0x00000000cdc1-61c30db1.ref\n",[101,1141,1142,1145],{"class":103,"line":169},[101,1143,1144],{"class":107},"3",[101,1146,1147],{"class":111},"    .git/reftable/0x00000000cdc2-0x00000000ce67-d9b55a96.ref\n",[101,1149,1150,1153],{"class":103,"line":180},[101,1151,1152],{"class":107},"1",[101,1154,1155],{"class":111},"    .git/reftable/0x00000000ce68-0x00000000ce6b-44721696.ref\n",[101,1157,1158,1160],{"class":103,"line":189},[101,1159,1152],{"class":107},[101,1161,1162],{"class":111},"    .git/reftable/tables.list\n",[12,1164,1165,1166,1169],{},"すべてのテーブルにおいて、",[66,1167,1168],{},"size(n) > size(n+1) * 2","という性質が維持されていることに注目してください。",[12,1171,1172,1173,1176],{},"自動圧縮がもたらすメリットのひとつは、「reftable」バックエンドのメンテナンスが自動化されることです。これにより、リポジトリで",[66,1174,1175],{},"git pack-refs","を実行する必要がなくなります。",[42,1178,1179],{"id":1179},"さらに詳しく知りたい方へ",[12,1181,1182,1183,1188],{},"この記事では、新しい「reftable」フォーマットの仕組みについて解説しました。さらに詳しく知りたい場合は、Gitプロジェクトで提供される",[16,1184,1187],{"href":1185,"rel":1186},"https://git-scm.com/docs/reftable",[],"テクニカルドキュメント","をご参照ください。",[1190,1191,1192],"blockquote",{},[12,1193,1194,1197],{},[16,1195,20],{"href":18,"rel":1196},[],"では、このバージョンにおけるその他の変更点をご確認いただけます。",[12,1199,1200],{},[1201,1202,1203,1204,1209,1212],"em",{},"監修：川瀬 洋平 ",[16,1205,1208],{"href":1206,"rel":1207},"https://gitlab.com/ykawase",[],"@ykawase",[1210,1211],"br",{},"\n（GitLab合同会社 カスタマーサクセス本部 シニアカスタマーサクセスマネージャー）",[1214,1215,1216],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sD7c4, html code.shiki .sD7c4{--shiki-default:#D73A49}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":97,"searchDepth":121,"depth":121,"links":1218},[1219,1220,1221,1226,1229],{"id":44,"depth":121,"text":45},{"id":256,"depth":121,"text":256},{"id":705,"depth":121,"text":705,"children":1222},[1223,1224,1225],{"id":791,"depth":141,"text":791},{"id":848,"depth":141,"text":848},{"id":877,"depth":141,"text":877},{"id":921,"depth":121,"text":921,"children":1227},[1228],{"id":1060,"depth":141,"text":1060},{"id":1179,"depth":121,"text":1179},"open-source","2024-05-30","Git 2.45.0では、GitLabがreftableバックエンドをGitに取り込んだことで、参照の保存方法が完全に変更されました。この新しいフォーマットの内部の仕組みを詳しく見てみましょう。","md",null,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664595/Blog/Hero%20Images/blog-image-template-1800x945__9_.png",{},"/ja-jp/blog/a-beginners-guide-to-the-git-reftable-format",{"title":5,"description":1232,"ogTitle":5,"ogDescription":1232,"noIndex":1239,"ogImage":1235,"ogUrl":1240,"ogSiteName":1241,"ogType":1242,"canonicalUrls":1240},false,"https://about.gitlab.com/blog/a-beginners-guide-to-the-git-reftable-format","https://about.gitlab.com","article","a-beginners-guide-to-the-git-reftable-format","ja-jp/blog/a-beginners-guide-to-the-git-reftable-format",[1246,1247,1248,1249],"git","tutorial","open source","performance","BlogPost","2025-02-04","WIx17zY-EM3C9IIOjRHUrp73dPsG-PHE_Echh0_4jao",{"logo":1254,"freeTrial":1259,"sales":1264,"login":1269,"items":1274,"search":1603,"minimal":1636,"duo":1653,"switchNav":1662,"pricingDeployment":1673},{"config":1255},{"href":1256,"dataGaName":1257,"dataGaLocation":1258},"/ja-jp/","gitlab logo","header",{"text":1260,"config":1261},"無料トライアルを開始",{"href":1262,"dataGaName":1263,"dataGaLocation":1258},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":1265,"config":1266},"デモをリクエスト",{"href":1267,"dataGaName":1268,"dataGaLocation":1258},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":1270,"config":1271},"サインイン",{"href":1272,"dataGaName":1273,"dataGaLocation":1258},"https://gitlab.com/users/sign_in/","sign in",[1275,1304,1406,1411,1525,1581],{"text":1276,"config":1277,"menu":1279},"プラットフォーム",{"dataNavLevelOne":1278},"platform",{"type":1280,"columns":1281},"cards",[1282,1288,1296],{"title":1276,"description":1283,"link":1284},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":1285,"config":1286},"プラットフォームの詳細はこちら",{"href":1287,"dataGaName":1278,"dataGaLocation":1258},"/ja-jp/platform/",{"title":1289,"description":1290,"link":1291},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":1292,"config":1293},"GitLab Duoのご紹介",{"href":1294,"dataGaName":1295,"dataGaLocation":1258},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":1297,"description":1298,"link":1299},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":1300,"config":1301},"詳細はこちら",{"href":1302,"dataGaName":1303,"dataGaLocation":1258},"/ja-jp/why-gitlab/","why gitlab",{"text":1305,"left":158,"config":1306,"menu":1308},"製品",{"dataNavLevelOne":1307},"solutions",{"type":1309,"link":1310,"columns":1314,"feature":1385},"lists",{"text":1311,"config":1312},"すべてのソリューションを表示",{"href":1313,"dataGaName":1307,"dataGaLocation":1258},"/ja-jp/solutions/",[1315,1340,1363],{"title":1316,"description":1317,"link":1318,"items":1323},"自動化","CI/CDと自動化でデプロイを加速",{"config":1319},{"icon":1320,"href":1321,"dataGaName":1322,"dataGaLocation":1258},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[1324,1328,1331,1336],{"text":1325,"config":1326},"CI/CD",{"href":1327,"dataGaLocation":1258,"dataGaName":1325},"/ja-jp/solutions/continuous-integration/",{"text":1289,"config":1329},{"href":1294,"dataGaLocation":1258,"dataGaName":1330},"gitlab duo agent platform - product menu",{"text":1332,"config":1333},"ソースコード管理",{"href":1334,"dataGaLocation":1258,"dataGaName":1335},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":1337,"config":1338},"自動化されたソフトウェアデリバリー",{"href":1321,"dataGaLocation":1258,"dataGaName":1339},"Automated software delivery",{"title":1341,"description":1342,"link":1343,"items":1348},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":1344},{"href":1345,"dataGaName":1346,"dataGaLocation":1258,"icon":1347},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[1349,1353,1358],{"text":1350,"config":1351},"アプリケーションセキュリティテスト",{"href":1345,"dataGaName":1352,"dataGaLocation":1258},"Application security testing",{"text":1354,"config":1355},"ソフトウェアサプライチェーンセキュリティ",{"href":1356,"dataGaLocation":1258,"dataGaName":1357},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":1359,"config":1360},"ソフトウェアコンプライアンス",{"href":1361,"dataGaName":1362,"dataGaLocation":1258},"/ja-jp/solutions/software-compliance/","software compliance",{"title":1364,"link":1365,"items":1370},"測定",{"config":1366},{"icon":1367,"href":1368,"dataGaName":1369,"dataGaLocation":1258},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[1371,1375,1380],{"text":1372,"config":1373},"可視性と測定",{"href":1368,"dataGaLocation":1258,"dataGaName":1374},"Visibility and Measurement",{"text":1376,"config":1377},"バリューストリーム管理",{"href":1378,"dataGaLocation":1258,"dataGaName":1379},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":1381,"config":1382},"分析とインサイト",{"href":1383,"dataGaLocation":1258,"dataGaName":1384},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":1386,"type":1309,"items":1387},"GitLabが活躍する場所",[1388,1394,1400],{"text":1389,"config":1390},"大企業",{"icon":1391,"href":1392,"dataGaLocation":1258,"dataGaName":1393},"Building","/ja-jp/enterprise/","enterprise",{"text":1395,"config":1396},"スモールビジネス",{"icon":1397,"href":1398,"dataGaLocation":1258,"dataGaName":1399},"Work","/ja-jp/small-business/","small business",{"text":1401,"config":1402},"公共部門",{"icon":1403,"href":1404,"dataGaLocation":1258,"dataGaName":1405},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":1407,"config":1408},"価格",{"href":1409,"dataGaName":1410,"dataGaLocation":1258,"dataNavLevelOne":1410},"/ja-jp/pricing/","pricing",{"text":1412,"config":1413,"menu":1415},"関連リソース",{"dataNavLevelOne":1414},"resources",{"type":1309,"link":1416,"columns":1420,"feature":1514},{"text":1417,"config":1418},"すべてのリソースを表示",{"href":1419,"dataGaName":1414,"dataGaLocation":1258},"/ja-jp/resources/",[1421,1454,1481],{"title":1422,"items":1423},"はじめに",[1424,1429,1434,1439,1444,1449],{"text":1425,"config":1426},"インストール",{"href":1427,"dataGaName":1428,"dataGaLocation":1258},"/ja-jp/install/","install",{"text":1430,"config":1431},"クイックスタートガイド",{"href":1432,"dataGaName":1433,"dataGaLocation":1258},"/ja-jp/get-started/","quick setup checklists",{"text":1435,"config":1436},"学ぶ",{"href":1437,"dataGaLocation":1258,"dataGaName":1438},"https://university.gitlab.com/","learn",{"text":1440,"config":1441},"製品ドキュメント",{"href":1442,"dataGaName":1443,"dataGaLocation":1258},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":1445,"config":1446},"ベストプラクティスビデオ",{"href":1447,"dataGaName":1448,"dataGaLocation":1258},"/ja-jp/getting-started-videos/","best practice videos",{"text":1450,"config":1451},"インテグレーション",{"href":1452,"dataGaName":1453,"dataGaLocation":1258},"/ja-jp/integrations/","integrations",{"title":1455,"items":1456},"検索する",[1457,1462,1467,1472,1476],{"text":1458,"config":1459},"お客様成功事例",{"href":1460,"dataGaName":1461,"dataGaLocation":1258},"/ja-jp/customers/","customer success stories",{"text":1463,"config":1464},"ブログ",{"href":1465,"dataGaName":1466,"dataGaLocation":1258},"/ja-jp/blog/","blog",{"text":1468,"config":1469},"Demo Hub",{"href":1470,"dataGaName":1471,"dataGaLocation":1258},"/ja-jp/demo-hub/","demo hub",{"text":1473,"config":1474},"The Source",{"href":1475,"dataGaName":1466,"dataGaLocation":1258},"/ja-jp/the-source/",{"text":1477,"config":1478},"リモート",{"href":1479,"dataGaName":1480,"dataGaLocation":1258},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":1482,"items":1483},"つなげる",[1484,1489,1494,1499,1504,1509],{"text":1485,"config":1486},"GitLabサービス",{"href":1487,"dataGaName":1488,"dataGaLocation":1258},"/ja-jp/services/","services",{"text":1490,"config":1491},"コントリビュート",{"href":1492,"dataGaName":1493,"dataGaLocation":1258},"https://contributors.gitlab.com","contribute",{"text":1495,"config":1496},"コミュニティ",{"href":1497,"dataGaName":1498,"dataGaLocation":1258},"/community/","community",{"text":1500,"config":1501},"フォーラム",{"href":1502,"dataGaName":1503,"dataGaLocation":1258},"https://forum.gitlab.com/","forum",{"text":1505,"config":1506},"イベント",{"href":1507,"dataGaName":1508,"dataGaLocation":1258},"/events/","events",{"text":1510,"config":1511},"パートナー",{"href":1512,"dataGaName":1513,"dataGaLocation":1258},"/ja-jp/partners/","partners",{"config":1515,"title":1518,"text":1519,"link":1520},{"background":1516,"textColor":1517},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":1521,"config":1522},"最新情報を読む",{"href":1523,"dataGaName":1524,"dataGaLocation":1258},"/ja-jp/whats-new/","whats new",{"text":1526,"config":1527,"menu":1529},"企業情報",{"dataNavLevelOne":1528},"company",{"type":1309,"columns":1530},[1531],{"items":1532},[1533,1538,1544,1546,1551,1556,1561,1566,1571,1576],{"text":1534,"config":1535},"GitLabについて",{"href":1536,"dataGaName":1537,"dataGaLocation":1258},"/ja-jp/company/","about",{"text":1539,"config":1540,"footerGa":1543},"採用情報",{"href":1541,"dataGaName":1542,"dataGaLocation":1258},"/jobs/","jobs",{"dataGaName":1542},{"text":1505,"config":1545},{"href":1507,"dataGaName":1508,"dataGaLocation":1258},{"text":1547,"config":1548},"経営陣",{"href":1549,"dataGaName":1550,"dataGaLocation":1258},"/company/team/e-group/","leadership",{"text":1552,"config":1553},"ハンドブック",{"href":1554,"dataGaName":1555,"dataGaLocation":1258},"https://handbook.gitlab.com/","handbook",{"text":1557,"config":1558},"投資家向け情報",{"href":1559,"dataGaName":1560,"dataGaLocation":1258},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":1562,"config":1563},"トラストセンター",{"href":1564,"dataGaName":1565,"dataGaLocation":1258},"/ja-jp/security/","trust center",{"text":1567,"config":1568},"AI Transparency Center",{"href":1569,"dataGaName":1570,"dataGaLocation":1258},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":1572,"config":1573},"ニュースレター",{"href":1574,"dataGaName":1575,"dataGaLocation":1258},"/company/contact/#contact-forms","newsletter",{"text":1577,"config":1578},"プレス",{"href":1579,"dataGaName":1580,"dataGaLocation":1258},"/press/","press",{"text":1582,"config":1583,"menu":1584},"お問い合わせ",{"dataNavLevelOne":1528},{"type":1309,"columns":1585},[1586],{"items":1587},[1588,1593,1598],{"text":1589,"config":1590},"お問い合わせはこちら",{"href":1591,"dataGaName":1592,"dataGaLocation":1258},"/ja-jp/sales/","talk to sales",{"text":1594,"config":1595},"サポートを受ける",{"href":1596,"dataGaName":1597,"dataGaLocation":1258},"https://support.gitlab.com/hc/en-us","support portal",{"text":1599,"config":1600},"カスタマーポータル",{"href":1601,"dataGaName":1602,"dataGaLocation":1258},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":1604,"login":1605,"suggestions":1612},"閉じる",{"text":1606,"link":1607},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":1608,"config":1609},"GitLab.com",{"href":1272,"dataGaName":1610,"dataGaLocation":1611},"search login","search",{"text":1613,"default":1614},"提案",[1615,1617,1622,1624,1628,1632],{"text":1289,"config":1616},{"href":1294,"dataGaName":1289,"dataGaLocation":1611},{"text":1618,"config":1619},"コード提案（AI）",{"href":1620,"dataGaName":1621,"dataGaLocation":1611},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":1325,"config":1623},{"href":1327,"dataGaName":1325,"dataGaLocation":1611},{"text":1625,"config":1626},"GitLab on AWS",{"href":1627,"dataGaName":1625,"dataGaLocation":1611},"/ja-jp/partners/technology-partners/aws/",{"text":1629,"config":1630},"GitLab on Google Cloud",{"href":1631,"dataGaName":1629,"dataGaLocation":1611},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":1633,"config":1634},"GitLabを選ぶ理由",{"href":1302,"dataGaName":1635,"dataGaLocation":1611},"Why GitLab?",{"freeTrial":1637,"mobileIcon":1641,"desktopIcon":1646,"secondaryButton":1649},{"text":1260,"config":1638},{"href":1639,"dataGaName":1263,"dataGaLocation":1640},"https://gitlab.com/-/trials/new/","nav",{"altText":1642,"config":1643},"GitLabアイコン",{"src":1644,"dataGaName":1645,"dataGaLocation":1640},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":1642,"config":1647},{"src":1648,"dataGaName":1645,"dataGaLocation":1640},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":1422,"config":1650},{"href":1651,"dataGaName":1652,"dataGaLocation":1640},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":1654,"mobileIcon":1658,"desktopIcon":1660},{"text":1655,"config":1656},"GitLab Duoの詳細について",{"href":1294,"dataGaName":1657,"dataGaLocation":1640},"gitlab duo",{"altText":1642,"config":1659},{"src":1644,"dataGaName":1645,"dataGaLocation":1640},{"altText":1642,"config":1661},{"src":1648,"dataGaName":1645,"dataGaLocation":1640},{"button":1663,"mobileIcon":1668,"desktopIcon":1670},{"text":1664,"config":1665},"/switch",{"href":1666,"dataGaName":1667,"dataGaLocation":1640},"#contact","switch",{"altText":1642,"config":1669},{"src":1644,"dataGaName":1645,"dataGaLocation":1640},{"altText":1642,"config":1671},{"src":1672,"dataGaName":1645,"dataGaLocation":1640},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1674,"mobileIcon":1679,"desktopIcon":1681},{"text":1675,"config":1676},"料金ページに戻る",{"href":1409,"dataGaName":1677,"dataGaLocation":1640,"icon":1678},"back to pricing","GoBack",{"altText":1642,"config":1680},{"src":1644,"dataGaName":1645,"dataGaLocation":1640},{"altText":1642,"config":1682},{"src":1648,"dataGaName":1645,"dataGaLocation":1640},{"title":1684,"button":1685,"config":1689},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":1300,"config":1686},{"href":1687,"dataGaName":1688,"dataGaLocation":1258},"/ja-jp/gitlab-orbit/","orbit",{"layout":1690,"disabled":1239},"release",{"data":1692},{"text":1693,"source":1694,"edit":1700,"contribute":1705,"config":1710,"items":1715,"minimal":1924},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":1695,"config":1696},"ページのソースを表示",{"href":1697,"dataGaName":1698,"dataGaLocation":1699},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1701,"config":1702},"このページを編集",{"href":1703,"dataGaName":1704,"dataGaLocation":1699},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1706,"config":1707},"ご協力をお願いします",{"href":1708,"dataGaName":1709,"dataGaLocation":1699},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1711,"facebook":1712,"youtube":1713,"linkedin":1714},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1716,1761,1814,1857,1891],{"title":1407,"links":1717,"subMenu":1732},[1718,1722,1727],{"text":1719,"config":1720},"プランの表示",{"href":1409,"dataGaName":1721,"dataGaLocation":1699},"view plans",{"text":1723,"config":1724},"Premiumを選ぶ理由",{"href":1725,"dataGaName":1726,"dataGaLocation":1699},"/ja-jp/pricing/premium/","why premium",{"text":1728,"config":1729},"Ultimateを選ぶ理由",{"href":1730,"dataGaName":1731,"dataGaLocation":1699},"/ja-jp/pricing/ultimate/","why ultimate",[1733],{"title":1582,"links":1734},[1735,1737,1739,1741,1746,1751,1756],{"text":1582,"config":1736},{"href":1591,"dataGaName":1268,"dataGaLocation":1699},{"text":1594,"config":1738},{"href":1596,"dataGaName":1597,"dataGaLocation":1699},{"text":1599,"config":1740},{"href":1601,"dataGaName":1602,"dataGaLocation":1699},{"text":1742,"config":1743},"ステータス",{"href":1744,"dataGaName":1745,"dataGaLocation":1699},"https://status.gitlab.com/","status",{"text":1747,"config":1748},"利用規約",{"href":1749,"dataGaName":1750,"dataGaLocation":1699},"/terms/","terms of use",{"text":1752,"config":1753},"プライバシーに関する声明",{"href":1754,"dataGaName":1755,"dataGaLocation":1699},"/ja-jp/privacy/","privacy statement",{"text":1757,"config":1758},"Cookie 優先設定",{"dataGaName":1759,"dataGaLocation":1699,"id":1760,"isOneTrustButton":158},"cookie preferences","ot-sdk-btn",{"title":1305,"links":1762,"subMenu":1771},[1763,1767],{"text":1764,"config":1765},"DevSecOpsプラットフォーム",{"href":1287,"dataGaName":1766,"dataGaLocation":1699},"devsecops platform",{"text":1768,"config":1769},"AI支援開発",{"href":1294,"dataGaName":1770,"dataGaLocation":1699},"ai-assisted development",[1772],{"title":1773,"links":1774},"トピック",[1775,1779,1784,1789,1794,1799,1804,1809],{"text":1325,"config":1776},{"href":1777,"dataGaName":1778,"dataGaLocation":1699},"/ja-jp/topics/ci-cd/","cicd",{"text":1780,"config":1781},"GitOps",{"href":1782,"dataGaName":1783,"dataGaLocation":1699},"/ja-jp/topics/gitops/","gitops",{"text":1785,"config":1786},"DevOps",{"href":1787,"dataGaName":1788,"dataGaLocation":1699},"/ja-jp/topics/devops/","devops",{"text":1790,"config":1791},"バージョン管理",{"href":1792,"dataGaName":1793,"dataGaLocation":1699},"/ja-jp/topics/version-control/","version control",{"text":1795,"config":1796},"DevSecOps",{"href":1797,"dataGaName":1798,"dataGaLocation":1699},"/ja-jp/topics/devsecops/","devsecops",{"text":1800,"config":1801},"クラウドネイティブ",{"href":1802,"dataGaName":1803,"dataGaLocation":1699},"/ja-jp/topics/cloud-native/","cloud native",{"text":1805,"config":1806},"コーディングのためのAI",{"href":1807,"dataGaName":1808,"dataGaLocation":1699},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":1810,"config":1811},"エージェント型AI",{"href":1812,"dataGaName":1813,"dataGaLocation":1699},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":1815,"links":1816},"ソリューション",[1817,1820,1822,1827,1831,1834,1837,1840,1842,1844,1847,1852],{"text":1350,"config":1818},{"href":1345,"dataGaName":1819,"dataGaLocation":1699},"Application Security Testing",{"text":1337,"config":1821},{"href":1321,"dataGaName":1322,"dataGaLocation":1699},{"text":1823,"config":1824},"アジャイル開発",{"href":1825,"dataGaName":1826,"dataGaLocation":1699},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":1828,"config":1829},"SCM",{"href":1334,"dataGaName":1830,"dataGaLocation":1699},"source code management",{"text":1325,"config":1832},{"href":1327,"dataGaName":1833,"dataGaLocation":1699},"continuous integration & delivery",{"text":1376,"config":1835},{"href":1378,"dataGaName":1836,"dataGaLocation":1699},"value stream management",{"text":1780,"config":1838},{"href":1839,"dataGaName":1783,"dataGaLocation":1699},"/ja-jp/solutions/gitops/",{"text":1389,"config":1841},{"href":1392,"dataGaName":1393,"dataGaLocation":1699},{"text":1395,"config":1843},{"href":1398,"dataGaName":1399,"dataGaLocation":1699},{"text":1845,"config":1846},"公共機関",{"href":1404,"dataGaName":1405,"dataGaLocation":1699},{"text":1848,"config":1849},"教育",{"href":1850,"dataGaName":1851,"dataGaLocation":1699},"/ja-jp/solutions/education/","education",{"text":1853,"config":1854},"金融サービス",{"href":1855,"dataGaName":1856,"dataGaLocation":1699},"/ja-jp/solutions/finance/","financial services",{"title":1858,"links":1859},"リソース",[1860,1862,1864,1866,1870,1872,1875,1877,1879,1881,1883,1885,1887,1889],{"text":1425,"config":1861},{"href":1427,"dataGaName":1428,"dataGaLocation":1699},{"text":1430,"config":1863},{"href":1432,"dataGaName":1433,"dataGaLocation":1699},{"text":1435,"config":1865},{"href":1437,"dataGaName":1438,"dataGaLocation":1699},{"text":1440,"config":1867},{"href":1868,"dataGaName":1869,"dataGaLocation":1699},"https://docs.gitlab.com/ja-jp","docs",{"text":1463,"config":1871},{"href":1465,"dataGaName":1466,"dataGaLocation":1699},{"text":1873,"config":1874},"最新リリース",{"href":1523,"dataGaName":1524,"dataGaLocation":1699},{"text":1458,"config":1876},{"href":1460,"dataGaName":1461,"dataGaLocation":1699},{"text":1477,"config":1878},{"href":1479,"dataGaName":1480,"dataGaLocation":1699},{"text":1485,"config":1880},{"href":1487,"dataGaName":1488,"dataGaLocation":1699},{"text":1490,"config":1882},{"href":1492,"dataGaName":1493,"dataGaLocation":1699},{"text":1495,"config":1884},{"href":1497,"dataGaName":1498,"dataGaLocation":1699},{"text":1500,"config":1886},{"href":1502,"dataGaName":1503,"dataGaLocation":1699},{"text":1505,"config":1888},{"href":1507,"dataGaName":1508,"dataGaLocation":1699},{"text":1510,"config":1890},{"href":1512,"dataGaName":1513,"dataGaLocation":1699},{"title":1892,"links":1893},"会社情報",[1894,1896,1898,1900,1902,1904,1908,1913,1915,1917,1919],{"text":1534,"config":1895},{"href":1536,"dataGaName":1528,"dataGaLocation":1699},{"text":1539,"config":1897},{"href":1541,"dataGaName":1542,"dataGaLocation":1699},{"text":1547,"config":1899},{"href":1549,"dataGaName":1550,"dataGaLocation":1699},{"text":1552,"config":1901},{"href":1554,"dataGaName":1555,"dataGaLocation":1699},{"text":1557,"config":1903},{"href":1559,"dataGaName":1560,"dataGaLocation":1699},{"text":1905,"config":1906},"Sustainability",{"href":1907,"dataGaName":1905,"dataGaLocation":1699},"/sustainability/",{"text":1909,"config":1910},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":1911,"dataGaName":1912,"dataGaLocation":1699},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":1562,"config":1914},{"href":1564,"dataGaName":1565,"dataGaLocation":1699},{"text":1572,"config":1916},{"href":1574,"dataGaName":1575,"dataGaLocation":1699},{"text":1577,"config":1918},{"href":1579,"dataGaName":1580,"dataGaLocation":1699},{"text":1920,"config":1921},"現代奴隷制の透明性に関する声明",{"href":1922,"dataGaName":1923,"dataGaLocation":1699},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1925},[1926,1928,1931],{"text":1747,"config":1927},{"href":1749,"dataGaName":1750,"dataGaLocation":1699},{"text":1929,"config":1930},"Cookieの設定",{"dataGaName":1759,"dataGaLocation":1699,"id":1760,"isOneTrustButton":158},{"text":1752,"config":1932},{"href":1754,"dataGaName":1755,"dataGaLocation":1699},[1934],{"id":1935,"title":7,"body":1234,"config":1936,"content":1938,"description":1234,"extension":1942,"meta":1943,"navigation":158,"path":1944,"seo":1945,"stem":1946,"__hash__":1947},"blogAuthors/en-us/blog/authors/patrick-steinhardt.yml",{"template":1937},"BlogAuthor",{"name":7,"config":1939},{"headshot":1940,"ctfId":1941},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661952/Blog/Author%20Headshots/pks-gitlab-headshot.png","pksgitlab","yml",{},"/en-us/blog/authors/patrick-steinhardt",{},"en-us/blog/authors/patrick-steinhardt","SV9Yd_vW69UbvntDP-SEOV9NKT_VwUAj5nfftf2ElSw",[1949,1957,1965],{"title":1950,"description":1951,"heroImage":1952,"category":1230,"date":1953,"authors":1954,"slug":1956,"externalUrl":1234},"GitLab AIハッカソン2026：受賞者発表","約7,000人の開発者がGitLab Duo Agent Platform上で600以上のAIエージェントとフローを構築したハッカソンの結果をご紹介。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1776457632/llddiylsgwuze0u1rjks.png","2026-04-22",[1955],"Nick Veenhof","gitlab-ai-hackathon-2026-meet-the-winners",{"title":1958,"description":1959,"heroImage":1960,"category":1230,"date":1961,"authors":1962,"slug":1964,"externalUrl":1234},"git mergeコマンドの基本を徹底解説","この記事では、git mergeコマンドについてコマンドの基本的な使い方からリクエストコードまで解説します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1754287290/averr2ecwl01q2f9lknf.jpg","2025-08-04",[1963],"GitLab Team","git-merge-command-overview",{"title":1966,"description":1967,"heroImage":1968,"category":1230,"date":1969,"authors":1970,"slug":1971,"externalUrl":1234},"オープンソースソフトウェア（OSS）とは？詳しく解説​","オープンソースの意味や、メリットとデメリットについて、分かりやすく解説します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1752720740/g9x8oi988xuhioglpczi.jpg","2025-07-17",[1963],"what-is-open-source",{"promotions":1973},[1974,1988,2000,2012],{"id":1975,"categories":1976,"header":1978,"text":1979,"button":1980,"image":1985},"ai-modernization",[1977],"ai","AIの真価、組織全体で発揮できていますか？","所要時間は5分以内です",{"text":1981,"config":1982},"AI成熟度スコアを確認する",{"href":1983,"dataGaName":1984,"dataGaLocation":1466},"/ja-jp/assessments/ai-modernization-assessment/","modernization assessment",{"config":1986},{"src":1987},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1989,"categories":1990,"header":1992,"text":1979,"button":1993,"image":1997},"devops-modernization",[1991,1798],"product","単にツールを管理するだけでなく、イノベーションを提供していますか？",{"text":1994,"config":1995},"DevOps成熟度スコアを確認しましょう",{"href":1996,"dataGaName":1984,"dataGaLocation":1466},"/ja-jp/assessments/devops-modernization-assessment/",{"config":1998},{"src":1999},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":2001,"categories":2002,"header":2004,"text":1979,"button":2005,"image":2009},"security-modernization",[2003],"security","スピードのためにセキュリティを犠牲にしていませんか？",{"text":2006,"config":2007},"セキュリティ成熟度スコアを確認しましょう",{"href":2008,"dataGaName":1984,"dataGaLocation":1466},"/ja-jp/assessments/security-modernization-assessment/",{"config":2010},{"src":2011},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":2013,"paths":2014,"header":2017,"text":2018,"button":2019,"image":2024},"github-azure-migration",[2015,2016],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","チームはGitHubのAzure移行に対応できていますか？","GitHubはすでにAzureを基盤として再構築を進めています。それがあなたのチームにとって何を意味するのか、ご確認ください。",{"text":2020,"config":2021},"GitLabとGitHubの比較を見る",{"href":2022,"dataGaName":2023,"dataGaLocation":1466},"/ja-jp/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":2025},{"src":1999},{"header":2027,"blurb":2028,"button":2029,"secondaryButton":2033},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":1260,"config":2030},{"href":2031,"dataGaName":1263,"dataGaLocation":2032},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":1582,"config":2034},{"href":1591,"dataGaName":1268,"dataGaLocation":2032},1786803789664]