[{"data":1,"prerenderedAt":1237},["ShallowReactive",2],{"/ja-jp/blog/take-advantage-of-git-rebase":3,"navigation-ja-jp":456,"banner-ja-jp":886,"footer-ja-jp":894,"blog-post-authors-ja-jp-Christian Couder":1136,"blog-related-posts-ja-jp-take-advantage-of-git-rebase":1151,"blog-promotions-ja-jp":1174,"next-steps-ja-jp":1228},{"id":4,"title":5,"authors":6,"body":8,"category":431,"date":432,"description":433,"extension":434,"externalUrl":435,"faq":435,"featured":436,"heroImage":437,"meta":438,"navigation":439,"path":440,"seo":441,"slug":447,"stem":448,"tags":449,"template":453,"updatedDate":454,"__hash__":455},"blogPosts/ja-jp/blog/take-advantage-of-git-rebase.md","Git rebaseを活用してワークフローを改善する",[7],"Christian Couder",{"type":9,"value":10,"toc":411},"minimark",[11,22,26,29,34,37,40,50,53,57,60,68,74,77,80,87,116,125,148,156,166,181,184,190,193,237,240,261,264,271,285,291,294,297,324,327,333,352,357,363,366,376,381,390,393,396,407],[12,13,14,15,21],"p",{},"近年、開発者はマージリクエストのレビューに多くの時間を費やしており、レビュー内容をもとにコードを改善する作業も欠かせません。この記事では、",[16,17,20],"a",{"href":18,"rel":19},"https://git-scm.com/docs/git-rebase",[],"Git rebase","を使ってレビューサイクルを短縮する方法を解説します。まずはワークフローの観点から整理してみましょう。",[23,24,25],"h2",{"id":25},"マージリクエストの修正方法",[12,27,28],{},"コードの変更を加えてマージリクエストを作成した後、修正が必要になるケースはよくあります。テストの失敗、バグの発見、レビュアーからの改善提案など、理由はさまざまです。",[30,31,33],"h3",{"id":32},"シンプルだが煩雑な方法コミットを積み重ねる","シンプルだが煩雑な方法：コミットを積み重ねる",[12,35,36],{},"一つ目の方法は、マージリクエストの元となるブランチの上に新しいコミットをどんどん追加し、ブランチをプッシュしてマージリクエストを更新する方法です。",[12,38,39],{},"しかし、この方法で多くのコミットが積み重なると、マージリクエストが扱いにくくなります。",[41,42,43,47],"ul",{},[44,45,46],"li",{},"全体の変更をまとめてレビューするのが難しくなる",[44,48,49],{},"コミットごとにレビューしようとしても、無関係な変更や同じコードの複数回の修正が混在している場合があり、レビューしにくい",[12,51,52],{},"レビュアーにとって理想的なのは、独立した小さなコミットに分割されていて、個別にレビューできる形式です。",[30,54,56],{"id":55},"プロの方法リベースを使う","プロの方法：リベースを使う",[12,58,59],{},"マージリクエストの準備や修正をより効果的に行う方法は、各コミットを常に小さく、自己完結した、レビューしやすい単位に保つことです。",[12,61,62,63,67],{},"つまり、新しいコミットを積み重ねるのではなく、ブランチ内の既存のコミットをすべて整理し直す必要があります。これは複雑で手間がかかるように思えるかもしれませんが、",[64,65,66],"code",{},"git rebase","がその助けになります。",[23,69,71,73],{"id":70},"git-rebaseでコミットを整理する",[64,72,66],{},"でコミットを整理する",[12,75,76],{},"小さく自己完結したコミットの積み重ねでマージリクエストを構成するには、ブランチのコミットを大幅に整理する必要があることがあります。コミットの準備が整ったら、ブランチをプッシュしてマージリクエストを作成または更新できます。",[30,78,79],{"id":79},"インタラクティブリベースを開始する",[12,81,82,83,86],{},"ブランチが",[64,84,85],{},"main","ブランチをベースにしている場合、ブランチを整理するコマンドは次のとおりです。",[88,89,94],"pre",{"className":90,"code":91,"language":92,"meta":93,"style":93},"language-shell shiki shiki-themes github-light","git rebase -i main\n","shell","",[64,95,96],{"__ignoreMap":93},[97,98,101,105,109,113],"span",{"class":99,"line":100},"line",1,[97,102,104],{"class":103},"s7eDp","git",[97,106,108],{"class":107},"sYBdl"," rebase",[97,110,112],{"class":111},"sYu0t"," -i",[97,114,115],{"class":107}," main\n",[12,117,118,119,124],{},"このコマンドはとても頻繁に使うことになるので、今すぐ",[16,120,123],{"href":121,"rel":122},"https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases",[],"Gitエイリアス","やシェルエイリアス・関数として登録しておくことをお勧めします。",[12,126,127,129,130,133,134,137,138,143,144,147],{},[64,128,66],{},"に渡す",[64,131,132],{},"-i","オプションは",[64,135,136],{},"--interactive","の短縮形です。これにより",[16,139,142],{"href":140,"rel":141},"https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---interactive",[],"インタラクティブリベース","が起動し、エディターが開きます。エディターには、ブランチ内のコミット一覧と、",[64,145,146],{},"#","で始まるコメント行が表示されます。コミット一覧は次のような形式です。",[88,149,154],{"className":150,"code":152,"language":153,"meta":93},[151],"language-text","pick 1aac632db2 first commit subject\npick a385014ad4 second commit subject\npick 6af12a88cf other commit subject\npick 5cd121e2a1 last commit subject\n","text",[64,155,152],{"__ignoreMap":93},[12,157,158,159,161,162,165],{},"各行は、",[64,160,66],{},"がそのコミットをどう処理するかを示す命令です。コミットは古い順に並んでおり、最も古いコミットが先頭に来ます（デフォルトの",[64,163,164],{},"git log","の表示順とは逆です）。各行の構成要素は次のとおりです。",[41,167,168,175,178],{},[44,169,170,171,174],{},"コミットに対する操作（ここでは",[64,172,173],{},"pick","）",[44,176,177],{},"短縮されたコミットID",[44,179,180],{},"コミットの内容を識別するためのサブジェクト",[30,182,183],{"id":183},"命令リストを編集する",[12,185,186,187,189],{},"この命令リストは編集できます。テキストエディターを閉じると、",[64,188,66],{},"が編集された命令を読み込み、順番に実行してブランチを希望どおりに再構成します。",[12,191,192],{},"全コミットの命令の後には、コメント行として編集方法と各命令の説明が表示されます。",[41,194,195,203,209,230],{},[44,196,197,198,202],{},"コミットの",[199,200,201],"strong",{},"命令行全体を削除する","と、そのコミットは再作成されません",[44,204,205,208],{},[199,206,207],{},"命令行の順序を入れ替える","と、コミットが指定した順序で再作成されます",[44,210,211,217,218,221,222,225,226,229],{},[199,212,213,214,216],{},"操作を",[64,215,173],{},"から別のもの","（",[64,219,220],{},"squash","や",[64,223,224],{},"reword","など）",[199,227,228],{},"に変更する","と、指定した操作がそのコミットに適用されます",[44,231,232,233,236],{},"既存の行の前後や間に",[199,234,235],{},"新しい命令行を追加する","こともできます",[12,238,239],{},"コメント行の説明だけでは不十分な場合は、以下の資料も参考にしてください。",[41,241,242,251],{},[44,243,244,245,250],{},"『Pro Git』の",[16,246,249],{"href":247,"rel":248},"https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History",[],"「Git Tools - Rewriting History」","セクション",[44,252,253,255,256,250],{},[64,254,66],{},"ドキュメントの",[16,257,260],{"href":258,"rel":259},"https://git-scm.com/docs/git-rebase#_interactive_mode",[],"「Interactive mode」",[30,262,263],{"id":263},"リベースの続行または中断",[12,265,266,267,270],{},"インタラクティブリベースは、コンフリクトが発生した場合（通常のリベースと同様）や、命令に",[64,268,269],{},"edit","を使用した場合に一時停止します。一時停止中は、現在のコミットを二つに分割したり、コンフリクトを解消したりといった作業が可能です。その後は次のいずれかを選べます。",[41,272,273,279],{},[44,274,275,278],{},[64,276,277],{},"git rebase --continue","でインタラクティブリベースを続行する",[44,280,281,284],{},[64,282,283],{},"git rebase --abort","でリベース全体を中断する",[12,286,287,288,290],{},"（これらの",[64,289,66],{},"オプションは、通常の非インタラクティブなリベースが一時停止した場合にも使えます。）",[23,292,293],{"id":293},"さらに役立つヒント",[30,295,296],{"id":296},"さまざまな命令を試す",[12,298,299,300,302,303,302,305,302,307,310,311,302,314,302,317,302,320,323],{},"各命令行で使える操作を実際に試してみることをお勧めします。特に",[64,301,224],{},"、",[64,304,269],{},[64,306,220],{},[64,308,309],{},"fixup","は便利です。すぐに略語版の",[64,312,313],{},"r",[64,315,316],{},"e",[64,318,319],{},"s",[64,321,322],{},"f","も使いたくなるはずです。",[30,325,326],{"id":326},"リベース中にシェルコマンドを実行する",[12,328,329,332],{},[64,330,331],{},"exec \u003Ccommand>","という命令を使うと、インタラクティブリベースの任意の時点でシェルコマンドを実行できます。非インタラクティブリベースでの活用が特に便利で、例えば次のように使います。",[88,334,336],{"className":90,"code":335,"language":92,"meta":93,"style":93},"git rebase --exec 'make test' main\n",[64,337,338],{"__ignoreMap":93},[97,339,340,342,344,347,350],{"class":99,"line":100},[97,341,104],{"class":103},[97,343,108],{"class":107},[97,345,346],{"class":111}," --exec",[97,348,349],{"class":107}," 'make test'",[97,351,115],{"class":107},[12,353,217,354,356],{},[64,355,132],{},"フラグがないので、これはインタラクティブリベースではありません。）",[12,358,359,362],{},[64,360,361],{},"--exec \u003Ccommand>","フラグを使うと、リベース済みの各コミットの後にシェルコマンドが実行されます。シェルコマンドが失敗した場合（ゼロ以外の終了コードが返された場合）、リベースはそこで停止します。",[30,364,365],{"id":365},"すべてのコミットをテストする",[12,367,368,371,372,375],{},[64,369,370],{},"make test","のようにソフトウェアのビルドとテスト実行を行うコマンドを",[64,373,374],{},"--exec","に渡すと、ブランチ内の各コミットが正しくビルドされ、テストをパスするかどうかを確認できます。",[12,377,378,380],{},[64,379,370],{},"が失敗するとリベースが停止します。その場で現在のコミットを修正し、リベースを続行して次のコミットのテストに進めます。",[12,382,383,384,389],{},"各コミットがきれいにビルドされ、すべてのテストをパスすることを確認しておくと、コードベースを常に健全な状態に保てます。リグレッションが発生したときに",[16,385,388],{"href":386,"rel":387},"https://git-scm.com/docs/git-bisect",[],"Git bisect","を活用したい場合にも特に有効です。",[23,391,392],{"id":392},"まとめ",[12,394,395],{},"Gitにおけるリベースは、コミットを整理するための非常に柔軟で強力なツールです。高品質な変更を高品質なコミットとマージリクエストとして提案するワークフローの実現に、ぜひ活用してください。開発者とレビュアーの効率が向上し、コードレビューやデバッグもより容易かつ効果的になります。",[12,397,398,401,402,406],{},[199,399,400],{},"追記："," このブログの続編として、",[16,403,405],{"href":404},"/ja-jp/blog/rebase-in-real-life/","実際のプロジェクトでリベースを適用する方法","も公開しています。ぜひあわせてご覧ください。",[408,409,410],"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 .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":93,"searchDepth":412,"depth":412,"links":413},2,[414,419,425,430],{"id":25,"depth":412,"text":25,"children":415},[416,418],{"id":32,"depth":417,"text":33},3,{"id":55,"depth":417,"text":56},{"id":70,"depth":412,"text":420,"children":421},"git rebaseでコミットを整理する",[422,423,424],{"id":79,"depth":417,"text":79},{"id":183,"depth":417,"text":183},{"id":263,"depth":417,"text":263},{"id":293,"depth":412,"text":293,"children":426},[427,428,429],{"id":296,"depth":417,"text":296},{"id":326,"depth":417,"text":326},{"id":365,"depth":417,"text":365},{"id":392,"depth":412,"text":392},"engineering","2022-10-06","Gitリベースの機能を活用して、ワークフローを改善する方法をご紹介します。","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665560/Blog/Hero%20Images/speedmonorepo.jpg",{},true,"/ja-jp/blog/take-advantage-of-git-rebase",{"ogTitle":442,"ogImage":437,"ogDescription":433,"ogSiteName":443,"noIndex":436,"ogType":444,"ogUrl":445,"title":442,"canonicalUrls":445,"description":446},"Git rebaseを使いこなす","https://about.gitlab.com","article","https://about.gitlab.com/ja-jp/blog/take-advantage-of-git-rebase","Gitリベースを活用すれば、マージリクエストのレビューサイクルを大幅に短縮できます。インタラクティブリベースの使い方から、コミットの整理・テスト・並べ替えまで、開発ワークフローを改善するための実践的なヒントをわかりやすく解説します。ぜひご活用ください。","take-advantage-of-git-rebase","ja-jp/blog/take-advantage-of-git-rebase",[104,450,451,452],"workflow","releases","tutorial","BlogPost","2026-05-25","JZki1DbN2jrLjSHC_D4il1xYvLgVgIqiN_yZRBOZHDY",{"logo":457,"freeTrial":462,"sales":467,"login":472,"items":477,"search":806,"minimal":839,"duo":856,"switchNav":865,"pricingDeployment":876},{"config":458},{"href":459,"dataGaName":460,"dataGaLocation":461},"/ja-jp/","gitlab logo","header",{"text":463,"config":464},"無料トライアルを開始",{"href":465,"dataGaName":466,"dataGaLocation":461},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":468,"config":469},"デモをリクエスト",{"href":470,"dataGaName":471,"dataGaLocation":461},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":473,"config":474},"サインイン",{"href":475,"dataGaName":476,"dataGaLocation":461},"https://gitlab.com/users/sign_in/","sign in",[478,507,609,614,728,784],{"text":479,"config":480,"menu":482},"プラットフォーム",{"dataNavLevelOne":481},"platform",{"type":483,"columns":484},"cards",[485,491,499],{"title":479,"description":486,"link":487},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":488,"config":489},"プラットフォームの詳細はこちら",{"href":490,"dataGaName":481,"dataGaLocation":461},"/ja-jp/platform/",{"title":492,"description":493,"link":494},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":495,"config":496},"GitLab Duoのご紹介",{"href":497,"dataGaName":498,"dataGaLocation":461},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":500,"description":501,"link":502},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":503,"config":504},"詳細はこちら",{"href":505,"dataGaName":506,"dataGaLocation":461},"/ja-jp/why-gitlab/","why gitlab",{"text":508,"left":439,"config":509,"menu":511},"製品",{"dataNavLevelOne":510},"solutions",{"type":512,"link":513,"columns":517,"feature":588},"lists",{"text":514,"config":515},"すべてのソリューションを表示",{"href":516,"dataGaName":510,"dataGaLocation":461},"/ja-jp/solutions/",[518,543,566],{"title":519,"description":520,"link":521,"items":526},"自動化","CI/CDと自動化でデプロイを加速",{"config":522},{"icon":523,"href":524,"dataGaName":525,"dataGaLocation":461},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[527,531,534,539],{"text":528,"config":529},"CI/CD",{"href":530,"dataGaLocation":461,"dataGaName":528},"/ja-jp/solutions/continuous-integration/",{"text":492,"config":532},{"href":497,"dataGaLocation":461,"dataGaName":533},"gitlab duo agent platform - product menu",{"text":535,"config":536},"ソースコード管理",{"href":537,"dataGaLocation":461,"dataGaName":538},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":540,"config":541},"自動化されたソフトウェアデリバリー",{"href":524,"dataGaLocation":461,"dataGaName":542},"Automated software delivery",{"title":544,"description":545,"link":546,"items":551},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":547},{"href":548,"dataGaName":549,"dataGaLocation":461,"icon":550},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[552,556,561],{"text":553,"config":554},"アプリケーションセキュリティテスト",{"href":548,"dataGaName":555,"dataGaLocation":461},"Application security testing",{"text":557,"config":558},"ソフトウェアサプライチェーンセキュリティ",{"href":559,"dataGaLocation":461,"dataGaName":560},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":562,"config":563},"ソフトウェアコンプライアンス",{"href":564,"dataGaName":565,"dataGaLocation":461},"/ja-jp/solutions/software-compliance/","software compliance",{"title":567,"link":568,"items":573},"測定",{"config":569},{"icon":570,"href":571,"dataGaName":572,"dataGaLocation":461},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[574,578,583],{"text":575,"config":576},"可視性と測定",{"href":571,"dataGaLocation":461,"dataGaName":577},"Visibility and Measurement",{"text":579,"config":580},"バリューストリーム管理",{"href":581,"dataGaLocation":461,"dataGaName":582},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":584,"config":585},"分析とインサイト",{"href":586,"dataGaLocation":461,"dataGaName":587},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":589,"type":512,"items":590},"GitLabが活躍する場所",[591,597,603],{"text":592,"config":593},"大企業",{"icon":594,"href":595,"dataGaLocation":461,"dataGaName":596},"Building","/ja-jp/enterprise/","enterprise",{"text":598,"config":599},"スモールビジネス",{"icon":600,"href":601,"dataGaLocation":461,"dataGaName":602},"Work","/ja-jp/small-business/","small business",{"text":604,"config":605},"公共部門",{"icon":606,"href":607,"dataGaLocation":461,"dataGaName":608},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":610,"config":611},"価格",{"href":612,"dataGaName":613,"dataGaLocation":461,"dataNavLevelOne":613},"/ja-jp/pricing/","pricing",{"text":615,"config":616,"menu":618},"関連リソース",{"dataNavLevelOne":617},"resources",{"type":512,"link":619,"columns":623,"feature":717},{"text":620,"config":621},"すべてのリソースを表示",{"href":622,"dataGaName":617,"dataGaLocation":461},"/ja-jp/resources/",[624,657,684],{"title":625,"items":626},"はじめに",[627,632,637,642,647,652],{"text":628,"config":629},"インストール",{"href":630,"dataGaName":631,"dataGaLocation":461},"/ja-jp/install/","install",{"text":633,"config":634},"クイックスタートガイド",{"href":635,"dataGaName":636,"dataGaLocation":461},"/ja-jp/get-started/","quick setup checklists",{"text":638,"config":639},"学ぶ",{"href":640,"dataGaLocation":461,"dataGaName":641},"https://university.gitlab.com/","learn",{"text":643,"config":644},"製品ドキュメント",{"href":645,"dataGaName":646,"dataGaLocation":461},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":648,"config":649},"ベストプラクティスビデオ",{"href":650,"dataGaName":651,"dataGaLocation":461},"/ja-jp/getting-started-videos/","best practice videos",{"text":653,"config":654},"インテグレーション",{"href":655,"dataGaName":656,"dataGaLocation":461},"/ja-jp/integrations/","integrations",{"title":658,"items":659},"検索する",[660,665,670,675,679],{"text":661,"config":662},"お客様成功事例",{"href":663,"dataGaName":664,"dataGaLocation":461},"/ja-jp/customers/","customer success stories",{"text":666,"config":667},"ブログ",{"href":668,"dataGaName":669,"dataGaLocation":461},"/ja-jp/blog/","blog",{"text":671,"config":672},"Demo Hub",{"href":673,"dataGaName":674,"dataGaLocation":461},"/ja-jp/demo-hub/","demo hub",{"text":676,"config":677},"The Source",{"href":678,"dataGaName":669,"dataGaLocation":461},"/ja-jp/the-source/",{"text":680,"config":681},"リモート",{"href":682,"dataGaName":683,"dataGaLocation":461},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":685,"items":686},"つなげる",[687,692,697,702,707,712],{"text":688,"config":689},"GitLabサービス",{"href":690,"dataGaName":691,"dataGaLocation":461},"/ja-jp/services/","services",{"text":693,"config":694},"コントリビュート",{"href":695,"dataGaName":696,"dataGaLocation":461},"https://contributors.gitlab.com","contribute",{"text":698,"config":699},"コミュニティ",{"href":700,"dataGaName":701,"dataGaLocation":461},"/community/","community",{"text":703,"config":704},"フォーラム",{"href":705,"dataGaName":706,"dataGaLocation":461},"https://forum.gitlab.com/","forum",{"text":708,"config":709},"イベント",{"href":710,"dataGaName":711,"dataGaLocation":461},"/events/","events",{"text":713,"config":714},"パートナー",{"href":715,"dataGaName":716,"dataGaLocation":461},"/ja-jp/partners/","partners",{"config":718,"title":721,"text":722,"link":723},{"background":719,"textColor":720},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":724,"config":725},"最新情報を読む",{"href":726,"dataGaName":727,"dataGaLocation":461},"/ja-jp/whats-new/","whats new",{"text":729,"config":730,"menu":732},"企業情報",{"dataNavLevelOne":731},"company",{"type":512,"columns":733},[734],{"items":735},[736,741,747,749,754,759,764,769,774,779],{"text":737,"config":738},"GitLabについて",{"href":739,"dataGaName":740,"dataGaLocation":461},"/ja-jp/company/","about",{"text":742,"config":743,"footerGa":746},"採用情報",{"href":744,"dataGaName":745,"dataGaLocation":461},"/jobs/","jobs",{"dataGaName":745},{"text":708,"config":748},{"href":710,"dataGaName":711,"dataGaLocation":461},{"text":750,"config":751},"経営陣",{"href":752,"dataGaName":753,"dataGaLocation":461},"/company/team/e-group/","leadership",{"text":755,"config":756},"ハンドブック",{"href":757,"dataGaName":758,"dataGaLocation":461},"https://handbook.gitlab.com/","handbook",{"text":760,"config":761},"投資家向け情報",{"href":762,"dataGaName":763,"dataGaLocation":461},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":765,"config":766},"トラストセンター",{"href":767,"dataGaName":768,"dataGaLocation":461},"/ja-jp/security/","trust center",{"text":770,"config":771},"AI Transparency Center",{"href":772,"dataGaName":773,"dataGaLocation":461},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":775,"config":776},"ニュースレター",{"href":777,"dataGaName":778,"dataGaLocation":461},"/company/contact/#contact-forms","newsletter",{"text":780,"config":781},"プレス",{"href":782,"dataGaName":783,"dataGaLocation":461},"/press/","press",{"text":785,"config":786,"menu":787},"お問い合わせ",{"dataNavLevelOne":731},{"type":512,"columns":788},[789],{"items":790},[791,796,801],{"text":792,"config":793},"お問い合わせはこちら",{"href":794,"dataGaName":795,"dataGaLocation":461},"/ja-jp/sales/","talk to sales",{"text":797,"config":798},"サポートを受ける",{"href":799,"dataGaName":800,"dataGaLocation":461},"https://support.gitlab.com/hc/en-us","support portal",{"text":802,"config":803},"カスタマーポータル",{"href":804,"dataGaName":805,"dataGaLocation":461},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":807,"login":808,"suggestions":815},"閉じる",{"text":809,"link":810},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":811,"config":812},"GitLab.com",{"href":475,"dataGaName":813,"dataGaLocation":814},"search login","search",{"text":816,"default":817},"提案",[818,820,825,827,831,835],{"text":492,"config":819},{"href":497,"dataGaName":492,"dataGaLocation":814},{"text":821,"config":822},"コード提案（AI）",{"href":823,"dataGaName":824,"dataGaLocation":814},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":528,"config":826},{"href":530,"dataGaName":528,"dataGaLocation":814},{"text":828,"config":829},"GitLab on AWS",{"href":830,"dataGaName":828,"dataGaLocation":814},"/ja-jp/partners/technology-partners/aws/",{"text":832,"config":833},"GitLab on Google Cloud",{"href":834,"dataGaName":832,"dataGaLocation":814},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":836,"config":837},"GitLabを選ぶ理由",{"href":505,"dataGaName":838,"dataGaLocation":814},"Why GitLab?",{"freeTrial":840,"mobileIcon":844,"desktopIcon":849,"secondaryButton":852},{"text":463,"config":841},{"href":842,"dataGaName":466,"dataGaLocation":843},"https://gitlab.com/-/trials/new/","nav",{"altText":845,"config":846},"GitLabアイコン",{"src":847,"dataGaName":848,"dataGaLocation":843},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":845,"config":850},{"src":851,"dataGaName":848,"dataGaLocation":843},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":625,"config":853},{"href":854,"dataGaName":855,"dataGaLocation":843},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":857,"mobileIcon":861,"desktopIcon":863},{"text":858,"config":859},"GitLab Duoの詳細について",{"href":497,"dataGaName":860,"dataGaLocation":843},"gitlab duo",{"altText":845,"config":862},{"src":847,"dataGaName":848,"dataGaLocation":843},{"altText":845,"config":864},{"src":851,"dataGaName":848,"dataGaLocation":843},{"button":866,"mobileIcon":871,"desktopIcon":873},{"text":867,"config":868},"/switch",{"href":869,"dataGaName":870,"dataGaLocation":843},"#contact","switch",{"altText":845,"config":872},{"src":847,"dataGaName":848,"dataGaLocation":843},{"altText":845,"config":874},{"src":875,"dataGaName":848,"dataGaLocation":843},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":877,"mobileIcon":882,"desktopIcon":884},{"text":878,"config":879},"料金ページに戻る",{"href":612,"dataGaName":880,"dataGaLocation":843,"icon":881},"back to pricing","GoBack",{"altText":845,"config":883},{"src":847,"dataGaName":848,"dataGaLocation":843},{"altText":845,"config":885},{"src":851,"dataGaName":848,"dataGaLocation":843},{"title":887,"button":888,"config":892},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":503,"config":889},{"href":890,"dataGaName":891,"dataGaLocation":461},"/ja-jp/gitlab-orbit/","orbit",{"layout":893,"disabled":436},"release",{"data":895},{"text":896,"source":897,"edit":903,"contribute":908,"config":913,"items":918,"minimal":1127},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":898,"config":899},"ページのソースを表示",{"href":900,"dataGaName":901,"dataGaLocation":902},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":904,"config":905},"このページを編集",{"href":906,"dataGaName":907,"dataGaLocation":902},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":909,"config":910},"ご協力をお願いします",{"href":911,"dataGaName":912,"dataGaLocation":902},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":914,"facebook":915,"youtube":916,"linkedin":917},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[919,964,1017,1060,1094],{"title":610,"links":920,"subMenu":935},[921,925,930],{"text":922,"config":923},"プランの表示",{"href":612,"dataGaName":924,"dataGaLocation":902},"view plans",{"text":926,"config":927},"Premiumを選ぶ理由",{"href":928,"dataGaName":929,"dataGaLocation":902},"/ja-jp/pricing/premium/","why premium",{"text":931,"config":932},"Ultimateを選ぶ理由",{"href":933,"dataGaName":934,"dataGaLocation":902},"/ja-jp/pricing/ultimate/","why ultimate",[936],{"title":785,"links":937},[938,940,942,944,949,954,959],{"text":785,"config":939},{"href":794,"dataGaName":471,"dataGaLocation":902},{"text":797,"config":941},{"href":799,"dataGaName":800,"dataGaLocation":902},{"text":802,"config":943},{"href":804,"dataGaName":805,"dataGaLocation":902},{"text":945,"config":946},"ステータス",{"href":947,"dataGaName":948,"dataGaLocation":902},"https://status.gitlab.com/","status",{"text":950,"config":951},"利用規約",{"href":952,"dataGaName":953,"dataGaLocation":902},"/terms/","terms of use",{"text":955,"config":956},"プライバシーに関する声明",{"href":957,"dataGaName":958,"dataGaLocation":902},"/ja-jp/privacy/","privacy statement",{"text":960,"config":961},"Cookie 優先設定",{"dataGaName":962,"dataGaLocation":902,"id":963,"isOneTrustButton":439},"cookie preferences","ot-sdk-btn",{"title":508,"links":965,"subMenu":974},[966,970],{"text":967,"config":968},"DevSecOpsプラットフォーム",{"href":490,"dataGaName":969,"dataGaLocation":902},"devsecops platform",{"text":971,"config":972},"AI支援開発",{"href":497,"dataGaName":973,"dataGaLocation":902},"ai-assisted development",[975],{"title":976,"links":977},"トピック",[978,982,987,992,997,1002,1007,1012],{"text":528,"config":979},{"href":980,"dataGaName":981,"dataGaLocation":902},"/ja-jp/topics/ci-cd/","cicd",{"text":983,"config":984},"GitOps",{"href":985,"dataGaName":986,"dataGaLocation":902},"/ja-jp/topics/gitops/","gitops",{"text":988,"config":989},"DevOps",{"href":990,"dataGaName":991,"dataGaLocation":902},"/ja-jp/topics/devops/","devops",{"text":993,"config":994},"バージョン管理",{"href":995,"dataGaName":996,"dataGaLocation":902},"/ja-jp/topics/version-control/","version control",{"text":998,"config":999},"DevSecOps",{"href":1000,"dataGaName":1001,"dataGaLocation":902},"/ja-jp/topics/devsecops/","devsecops",{"text":1003,"config":1004},"クラウドネイティブ",{"href":1005,"dataGaName":1006,"dataGaLocation":902},"/ja-jp/topics/cloud-native/","cloud native",{"text":1008,"config":1009},"コーディングのためのAI",{"href":1010,"dataGaName":1011,"dataGaLocation":902},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":1013,"config":1014},"エージェント型AI",{"href":1015,"dataGaName":1016,"dataGaLocation":902},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":1018,"links":1019},"ソリューション",[1020,1023,1025,1030,1034,1037,1040,1043,1045,1047,1050,1055],{"text":553,"config":1021},{"href":548,"dataGaName":1022,"dataGaLocation":902},"Application Security Testing",{"text":540,"config":1024},{"href":524,"dataGaName":525,"dataGaLocation":902},{"text":1026,"config":1027},"アジャイル開発",{"href":1028,"dataGaName":1029,"dataGaLocation":902},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":1031,"config":1032},"SCM",{"href":537,"dataGaName":1033,"dataGaLocation":902},"source code management",{"text":528,"config":1035},{"href":530,"dataGaName":1036,"dataGaLocation":902},"continuous integration & delivery",{"text":579,"config":1038},{"href":581,"dataGaName":1039,"dataGaLocation":902},"value stream management",{"text":983,"config":1041},{"href":1042,"dataGaName":986,"dataGaLocation":902},"/ja-jp/solutions/gitops/",{"text":592,"config":1044},{"href":595,"dataGaName":596,"dataGaLocation":902},{"text":598,"config":1046},{"href":601,"dataGaName":602,"dataGaLocation":902},{"text":1048,"config":1049},"公共機関",{"href":607,"dataGaName":608,"dataGaLocation":902},{"text":1051,"config":1052},"教育",{"href":1053,"dataGaName":1054,"dataGaLocation":902},"/ja-jp/solutions/education/","education",{"text":1056,"config":1057},"金融サービス",{"href":1058,"dataGaName":1059,"dataGaLocation":902},"/ja-jp/solutions/finance/","financial services",{"title":1061,"links":1062},"リソース",[1063,1065,1067,1069,1073,1075,1078,1080,1082,1084,1086,1088,1090,1092],{"text":628,"config":1064},{"href":630,"dataGaName":631,"dataGaLocation":902},{"text":633,"config":1066},{"href":635,"dataGaName":636,"dataGaLocation":902},{"text":638,"config":1068},{"href":640,"dataGaName":641,"dataGaLocation":902},{"text":643,"config":1070},{"href":1071,"dataGaName":1072,"dataGaLocation":902},"https://docs.gitlab.com/ja-jp","docs",{"text":666,"config":1074},{"href":668,"dataGaName":669,"dataGaLocation":902},{"text":1076,"config":1077},"最新リリース",{"href":726,"dataGaName":727,"dataGaLocation":902},{"text":661,"config":1079},{"href":663,"dataGaName":664,"dataGaLocation":902},{"text":680,"config":1081},{"href":682,"dataGaName":683,"dataGaLocation":902},{"text":688,"config":1083},{"href":690,"dataGaName":691,"dataGaLocation":902},{"text":693,"config":1085},{"href":695,"dataGaName":696,"dataGaLocation":902},{"text":698,"config":1087},{"href":700,"dataGaName":701,"dataGaLocation":902},{"text":703,"config":1089},{"href":705,"dataGaName":706,"dataGaLocation":902},{"text":708,"config":1091},{"href":710,"dataGaName":711,"dataGaLocation":902},{"text":713,"config":1093},{"href":715,"dataGaName":716,"dataGaLocation":902},{"title":1095,"links":1096},"会社情報",[1097,1099,1101,1103,1105,1107,1111,1116,1118,1120,1122],{"text":737,"config":1098},{"href":739,"dataGaName":731,"dataGaLocation":902},{"text":742,"config":1100},{"href":744,"dataGaName":745,"dataGaLocation":902},{"text":750,"config":1102},{"href":752,"dataGaName":753,"dataGaLocation":902},{"text":755,"config":1104},{"href":757,"dataGaName":758,"dataGaLocation":902},{"text":760,"config":1106},{"href":762,"dataGaName":763,"dataGaLocation":902},{"text":1108,"config":1109},"Sustainability",{"href":1110,"dataGaName":1108,"dataGaLocation":902},"/sustainability/",{"text":1112,"config":1113},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":1114,"dataGaName":1115,"dataGaLocation":902},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":765,"config":1117},{"href":767,"dataGaName":768,"dataGaLocation":902},{"text":775,"config":1119},{"href":777,"dataGaName":778,"dataGaLocation":902},{"text":780,"config":1121},{"href":782,"dataGaName":783,"dataGaLocation":902},{"text":1123,"config":1124},"現代奴隷制の透明性に関する声明",{"href":1125,"dataGaName":1126,"dataGaLocation":902},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1128},[1129,1131,1134],{"text":950,"config":1130},{"href":952,"dataGaName":953,"dataGaLocation":902},{"text":1132,"config":1133},"Cookieの設定",{"dataGaName":962,"dataGaLocation":902,"id":963,"isOneTrustButton":439},{"text":955,"config":1135},{"href":957,"dataGaName":958,"dataGaLocation":902},[1137],{"id":1138,"title":7,"body":435,"config":1139,"content":1141,"description":435,"extension":1145,"meta":1146,"navigation":439,"path":1147,"seo":1148,"stem":1149,"__hash__":1150},"blogAuthors/en-us/blog/authors/christian-couder.yml",{"template":1140},"BlogAuthor",{"name":7,"config":1142},{"headshot":1143,"ctfId":1144},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663687/Blog/Author%20Headshots/chriscool-headshot.jpg","chriscool","yml",{},"/en-us/blog/authors/christian-couder",{},"en-us/blog/authors/christian-couder","6VsKjKNdm1XKAmFMZHj53ROyylDlxaSJhcARRkw6EQQ",[1152,1159,1166],{"title":1153,"description":1153,"heroImage":1154,"category":431,"date":1155,"authors":1156,"slug":1158,"externalUrl":435},"MCPサーバーとは？仕組みやソフトウェア開発の活用例をわかりやすく解説","https://res.cloudinary.com/about-gitlab-com/image/upload/v1786001428/qedvughylmeposoqm5zs.jpg","2026-08-07",[1157],"GitLab Team","what-is-mcp-server",{"title":1160,"description":1161,"heroImage":1162,"category":431,"date":1163,"authors":1164,"slug":1165,"externalUrl":435},"イテレーションとは？意味や進め方、おすすめの支援ツールを紹介","イテレーションとは、アジャイル開発における「反復」を意味する開発単位です。本記事では、イテレーションの意味やスプリントとの違い、具体的な進め方、成功のポイントをわかりやすく解説します。アジャイル開発を支援するツールもあわせて紹介します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1785816755/mj23yaguu0gxvbztd6pl.jpg","2026-08-06",[1157],"what-is-iteration",{"title":1167,"description":1168,"heroImage":1169,"category":431,"date":1163,"authors":1170,"slug":1173,"externalUrl":435},"GitLab Self-Hostedで実現するコンフィデンシャルAI","ソースコードをハードウェアで暗号化された境界の外に出すことなく、GitLab DuoのAIコーディングエージェントを開発者に提供します。GPUは不要です。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png",[1171,1172],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"promotions":1175},[1176,1190,1202,1214],{"id":1177,"categories":1178,"header":1180,"text":1181,"button":1182,"image":1187},"ai-modernization",[1179],"ai","AIの真価、組織全体で発揮できていますか？","所要時間は5分以内です",{"text":1183,"config":1184},"AI成熟度スコアを確認する",{"href":1185,"dataGaName":1186,"dataGaLocation":669},"/ja-jp/assessments/ai-modernization-assessment/","modernization assessment",{"config":1188},{"src":1189},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1191,"categories":1192,"header":1194,"text":1181,"button":1195,"image":1199},"devops-modernization",[1193,1001],"product","単にツールを管理するだけでなく、イノベーションを提供していますか？",{"text":1196,"config":1197},"DevOps成熟度スコアを確認しましょう",{"href":1198,"dataGaName":1186,"dataGaLocation":669},"/ja-jp/assessments/devops-modernization-assessment/",{"config":1200},{"src":1201},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1203,"categories":1204,"header":1206,"text":1181,"button":1207,"image":1211},"security-modernization",[1205],"security","スピードのためにセキュリティを犠牲にしていませんか？",{"text":1208,"config":1209},"セキュリティ成熟度スコアを確認しましょう",{"href":1210,"dataGaName":1186,"dataGaLocation":669},"/ja-jp/assessments/security-modernization-assessment/",{"config":1212},{"src":1213},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1215,"paths":1216,"header":1219,"text":1220,"button":1221,"image":1226},"github-azure-migration",[1217,1218],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","チームはGitHubのAzure移行に対応できていますか？","GitHubはすでにAzureを基盤として再構築を進めています。それがあなたのチームにとって何を意味するのか、ご確認ください。",{"text":1222,"config":1223},"GitLabとGitHubの比較を見る",{"href":1224,"dataGaName":1225,"dataGaLocation":669},"/ja-jp/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1227},{"src":1201},{"header":1229,"blurb":1230,"button":1231,"secondaryButton":1235},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":463,"config":1232},{"href":1233,"dataGaName":466,"dataGaLocation":1234},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":785,"config":1236},{"href":794,"dataGaName":471,"dataGaLocation":1234},1786803753210]