[{"data":1,"prerenderedAt":823},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/implement-continuous-integration":3,"navigation-ja-jp":138,"banner-ja-jp":565,"footer-ja-jp":573,"next-steps-ja-jp":814},{"id":4,"title":5,"body":6,"category":6,"config":6,"content":7,"description":6,"extension":130,"meta":131,"navigation":132,"path":133,"seo":134,"slug":6,"stem":136,"testContent":6,"type":6,"__hash__":137},"pages/ja-jp/topics/ci-cd/implement-continuous-integration/index.yml","",null,[8,22,29,82,128],{"type":9,"componentName":9,"componentContent":10},"CommonBreadcrumbs",{"crumbs":11},[12,16,20],{"title":13,"config":14},"Industry topics",{"href":15},"/ja-jp/topics/",{"title":17,"config":18},"CI/CD",{"href":19},"/ja-jp/topics/ci-cd/",{"title":21},"Implement continuous integration",{"type":23,"componentName":23,"componentContent":24},"CommonArticleHero",{"title":25,"text":26,"config":27},"継続的インテグレーションを実装すべき理由","継続的インテグレーション（CI）を実装すると、コードが頻繁にマージおよびテストされ、ソフトウェアの品質が向上し、デプロイのプロセスが効率化されます。CIの実践は、リリースサイクルの短縮や本番ワークフローでのコード改善など、ソフトウェア開発チームに多くのメリットをもたらすものです。\n",{"id":25,"twoColumns":28},false,{"type":30,"componentName":30,"componentContent":31},"CommonSideNavigationWithTree",{"anchors":32,"components":55},{"text":33,"data":34},"On this page",[35,39,43,47,51],{"text":36,"config":37},"継続的インテグレーションとは？",{"href":38},"#what-is-continuous-integration",{"text":40,"config":41},"継続的インテグレーションの設定方法",{"href":42},"#how-to-set-up-continuous-integration",{"text":44,"config":45},"必須の継続的インテグレーションツール",{"href":46},"#essential-continuous-integration-tools",{"text":48,"config":49},"継続的インテグレーションを適切に行う方法",{"href":50},"#how-to-do-continuous-integration-the-right-way",{"text":52,"config":53},"まとめ",{"href":54},"#conclusion",[56,62,67,72,77],{"type":57,"componentName":57,"componentContent":58},"TopicsCopy",{"header":36,"text":59,"config":60},"継続的インテグレーション（CI）は、通常1日に数回、コードを共有リポジトリにマージするプラクティスです。リポジトリまたは本番環境ではマージされるコードにインテグレーションの問題やその他の問題がないことを確認するため、自動化されたビルドとテストが行われます。継続的インテグレーションのパイプラインは、自動化されたテストを実行します。新しいコードはこうしたテストに合格して次のステージに進むか、合格せずに失敗します。これにより、CIで検証されたコードのみが本番環境に反映されるようになります。",{"id":61},"what-is-continuous-integration",{"type":57,"componentName":57,"componentContent":63},{"header":40,"text":64,"config":65},"継続的インテグレーションをうまく行うには、考え方の変化と[DevOpsベストプラクティス](/topics/devops/){data-ga-name=\"devops best practices\" data-ga-location=\"body\"}への取り組みが必要となります。組織の賛同だけでなく、インフラストラクチャやツールへの多額の投資を検討する必要もあります。DevOpsの知識とクラウドネイティブ環境での作業経験を備えた技術的なリーダーシップの存在も、成功には不可欠です。\n",{"id":66},"how-to-set-up-continuous-integration",{"type":57,"componentName":57,"componentContent":68},{"header":44,"text":69,"config":70},"チームはツールやクラウドサービスの任意の組み合わせに投資することができますが、初めて継続的インテグレーション（CI）を実装するチームは、次の3つの必須ツールから始める必要があります。\n* [Git](/solutions/source-code-management/){data-ga-name=\"git\" data-ga-location=\"body\"}などのソースコード管理（SCM）システム。\n\n* すべてのコードの信頼できる唯一の情報源として機能する共有ソースコードリポジトリ。\n\n* 一元化されたソースコードリポジトリ（[GitLab CI](/solutions/continuous-integration/){data-ga-name=\"gitlab ci\" data-ga-location=\"body\"}など）と統合された、コード変更のスクリプトを実行する継続的インテグレーションサーバー。\n",{"id":71},"essential-continuous-integration-tools",{"type":57,"componentName":57,"componentContent":73},{"header":48,"text":74,"config":75},"継続的インテグレーションは、単なるツールではありません。CIツールの実装はプロセスの一部ですが、文化的な変化も同時に起こす必要があります。継続的インテグレーションは、より大きな[DevOpsのマインドセット](/topics/devops/){data-ga-name=\"devops mindset\" data-ga-location=\"body\"}を構成する一部です。継続的インテグレーションのメリットを最大限に活用するには、ツールと文化的ニーズを念頭に置くようにしましょう。\n\n### コードの頻繁なコミット\n\n\n継続的インテグレーションは、コードの小規模な変更を頻繁に行うことで成功します。複数回に分けて小規模なテストが行われたコードはデベロッパーがバグやエラーを特定しやすいため、コード品質の向上が保証されます。\n\n\n### CIパイプラインの複雑さを回避\n\n\n開発環境には、不要な複雑な要素が持ち込まれる傾向があります。すべてをできるだけシンプルに抑え、[何もする必要のないソリューション](/blog/boring-solutions-faster-iteration/){data-ga-name=\"boring solutions\" data-ga-location=\"body\"}を見つけましょう。\n\n\n### 適切な[ニーズに合った継続的インテグレーション](/topics/ci-cd/implement-continuous-integration/#find-the-right-continuous-integration-for-your-needs){data-ga-name=\"continuous integration for your needs\" data-ga-location=\"body\"}を見つける\n\n\nすべてのCIが同じではないため、ニーズに合わせて[適切なCIを見つける](/topics/ci-cd/choose-continuous-integration-tool/){data-ga-name=\"find the right ci\" data-ga-location=\"body\"}ことが重要です。クラウドプロバイダーと互換性はあるでしょうか？ 予算内に収まりますか？ 他の同様のツールと比較するとどうでしょうか？ 成長の余地はありますか？ 適切な質問を投げかければ、長期的に役立つCIソリューションが見つかります。\n",{"id":76},"how-to-do-continuous-integration-the-right-way",{"type":57,"componentName":57,"componentContent":78},{"header":52,"text":79,"config":80},"継続的インテグレーション（CI）の実装はDevOpsソフトウェア開発プラクティスの重要なコンポーネントであり、ソフトウェア開発ライフサイクル全体を強化する多数のメリットを提供します。コードを頻繁にマージして自動テストを実施することで、CIは高品質のソフトウェア製品と効率的なデプロイプロセスの実現を保証します。ソフトウェア開発チームは、開発ワークフローの改善、リリースサイクルの短縮、デリバリープロセスがスムーズになるなどのメリットを享受できます。\n\nCIプラクティスを取り入れるには、バージョンコントロールシステムやCIサーバーなどの適切なツールだけでなく、共同作業や反復的な開発プラクティスへの文化的な移行も必要となります。継続的インテグレーションプロセスに対するこの包括的なアプローチは、開発からデプロイまでのソフトウェアリリースプロセス全体をサポートし、高品質なソフトウェアと開発サイクルの効率化を実現します。\n",{"id":81},"conclusion",{"type":83,"componentName":83,"componentContent":84},"CommonResourcesContainer",{"header":85,"tabs":86},"おすすめのコンテンツ",[87],{"name":88,"items":89,"config":127},"resources",[90,101,111,119],{"header":91,"type":92,"image":93,"link":96},"所属組織でCI/CDを使用する効果を論証する","ウェブキャスト",{"altText":91,"config":94},{"src":95},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159368/Website/Topics/drupalassoc_cover.jpg",{"text":97,"config":98},"今すぐ視聴",{"href":99,"icon":100,"modal":28},"/webcast/cicd-in-your-organization/","Webcast",{"header":102,"type":103,"image":104,"link":107},"DevOps導入への賛同が必要ですか？ ステークホルダーを納得させる方法をご紹介します","Web",{"altText":102,"config":105},{"src":106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159343/Website/Topics/customers-link.jpg",{"text":108,"config":109},"詳細はこちら",{"href":110,"icon":103,"modal":28},"/blog/devops-stakeholder-buyin/",{"header":112,"type":103,"image":113,"link":116},"GitLab CI/CDで[メタ]を取得：ビルドイメージのビルド",{"altText":112,"config":114},{"src":115},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159401/Website/Topics/hotjar.jpg",{"text":108,"config":117},{"href":118,"icon":103,"modal":28},"/blog/building-build-images/",{"header":120,"type":103,"image":121,"link":124},"継続的インテグレーションの初心者向けガイド",{"altText":120,"config":122},{"src":123},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158563/Website/Topics/modernize-cicd.jpg",{"text":108,"config":125},{"href":126,"icon":103,"modal":28},"/blog/a-beginners-guide-to-continuous-integration/",{"key":88},{"type":129,"componentName":129},"CommonNextSteps","yml",{},true,"/ja-jp/topics/ci-cd/implement-continuous-integration",{"title":25,"description":135},"継続的インテグレーションの実装には多くの課題が発生します。ここでは必要な3つの必須ツールと、継続的インテグレーションを適切な方法で行う方法についてご紹介します。","ja-jp/topics/ci-cd/implement-continuous-integration/index","zZGMjuSFUMGQvJivOhRqXtIJyLFD4fyLUu6ylyfjmzc",{"logo":139,"freeTrial":144,"sales":149,"login":154,"items":159,"search":485,"minimal":518,"duo":535,"switchNav":544,"pricingDeployment":555},{"config":140},{"href":141,"dataGaName":142,"dataGaLocation":143},"/ja-jp/","gitlab logo","header",{"text":145,"config":146},"無料トライアルを開始",{"href":147,"dataGaName":148,"dataGaLocation":143},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":150,"config":151},"デモをリクエスト",{"href":152,"dataGaName":153,"dataGaLocation":143},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":155,"config":156},"サインイン",{"href":157,"dataGaName":158,"dataGaLocation":143},"https://gitlab.com/users/sign_in/","sign in",[160,188,289,294,407,463],{"text":161,"config":162,"menu":164},"プラットフォーム",{"dataNavLevelOne":163},"platform",{"type":165,"columns":166},"cards",[167,173,181],{"title":161,"description":168,"link":169},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":170,"config":171},"プラットフォームの詳細はこちら",{"href":172,"dataGaName":163,"dataGaLocation":143},"/ja-jp/platform/",{"title":174,"description":175,"link":176},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":177,"config":178},"GitLab Duoのご紹介",{"href":179,"dataGaName":180,"dataGaLocation":143},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":182,"description":183,"link":184},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":108,"config":185},{"href":186,"dataGaName":187,"dataGaLocation":143},"/ja-jp/why-gitlab/","why gitlab",{"text":189,"left":132,"config":190,"menu":192},"製品",{"dataNavLevelOne":191},"solutions",{"type":193,"link":194,"columns":198,"feature":268},"lists",{"text":195,"config":196},"すべてのソリューションを表示",{"href":197,"dataGaName":191,"dataGaLocation":143},"/ja-jp/solutions/",[199,223,246],{"title":200,"description":201,"link":202,"items":207},"自動化","CI/CDと自動化でデプロイを加速",{"config":203},{"icon":204,"href":205,"dataGaName":206,"dataGaLocation":143},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[208,211,214,219],{"text":17,"config":209},{"href":210,"dataGaLocation":143,"dataGaName":17},"/ja-jp/solutions/continuous-integration/",{"text":174,"config":212},{"href":179,"dataGaLocation":143,"dataGaName":213},"gitlab duo agent platform - product menu",{"text":215,"config":216},"ソースコード管理",{"href":217,"dataGaLocation":143,"dataGaName":218},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":220,"config":221},"自動化されたソフトウェアデリバリー",{"href":205,"dataGaLocation":143,"dataGaName":222},"Automated software delivery",{"title":224,"description":225,"link":226,"items":231},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":227},{"href":228,"dataGaName":229,"dataGaLocation":143,"icon":230},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[232,236,241],{"text":233,"config":234},"アプリケーションセキュリティテスト",{"href":228,"dataGaName":235,"dataGaLocation":143},"Application security testing",{"text":237,"config":238},"ソフトウェアサプライチェーンセキュリティ",{"href":239,"dataGaLocation":143,"dataGaName":240},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":242,"config":243},"ソフトウェアコンプライアンス",{"href":244,"dataGaName":245,"dataGaLocation":143},"/ja-jp/solutions/software-compliance/","software compliance",{"title":247,"link":248,"items":253},"測定",{"config":249},{"icon":250,"href":251,"dataGaName":252,"dataGaLocation":143},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[254,258,263],{"text":255,"config":256},"可視性と測定",{"href":251,"dataGaLocation":143,"dataGaName":257},"Visibility and Measurement",{"text":259,"config":260},"バリューストリーム管理",{"href":261,"dataGaLocation":143,"dataGaName":262},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":264,"config":265},"分析とインサイト",{"href":266,"dataGaLocation":143,"dataGaName":267},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":269,"type":193,"items":270},"GitLabが活躍する場所",[271,277,283],{"text":272,"config":273},"大企業",{"icon":274,"href":275,"dataGaLocation":143,"dataGaName":276},"Building","/ja-jp/enterprise/","enterprise",{"text":278,"config":279},"スモールビジネス",{"icon":280,"href":281,"dataGaLocation":143,"dataGaName":282},"Work","/ja-jp/small-business/","small business",{"text":284,"config":285},"公共部門",{"icon":286,"href":287,"dataGaLocation":143,"dataGaName":288},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":290,"config":291},"価格",{"href":292,"dataGaName":293,"dataGaLocation":143,"dataNavLevelOne":293},"/ja-jp/pricing/","pricing",{"text":295,"config":296,"menu":297},"関連リソース",{"dataNavLevelOne":88},{"type":193,"link":298,"columns":302,"feature":396},{"text":299,"config":300},"すべてのリソースを表示",{"href":301,"dataGaName":88,"dataGaLocation":143},"/ja-jp/resources/",[303,336,363],{"title":304,"items":305},"はじめに",[306,311,316,321,326,331],{"text":307,"config":308},"インストール",{"href":309,"dataGaName":310,"dataGaLocation":143},"/ja-jp/install/","install",{"text":312,"config":313},"クイックスタートガイド",{"href":314,"dataGaName":315,"dataGaLocation":143},"/ja-jp/get-started/","quick setup checklists",{"text":317,"config":318},"学ぶ",{"href":319,"dataGaLocation":143,"dataGaName":320},"https://university.gitlab.com/","learn",{"text":322,"config":323},"製品ドキュメント",{"href":324,"dataGaName":325,"dataGaLocation":143},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":327,"config":328},"ベストプラクティスビデオ",{"href":329,"dataGaName":330,"dataGaLocation":143},"/ja-jp/getting-started-videos/","best practice videos",{"text":332,"config":333},"インテグレーション",{"href":334,"dataGaName":335,"dataGaLocation":143},"/ja-jp/integrations/","integrations",{"title":337,"items":338},"検索する",[339,344,349,354,358],{"text":340,"config":341},"お客様成功事例",{"href":342,"dataGaName":343,"dataGaLocation":143},"/ja-jp/customers/","customer success stories",{"text":345,"config":346},"ブログ",{"href":347,"dataGaName":348,"dataGaLocation":143},"/ja-jp/blog/","blog",{"text":350,"config":351},"Demo Hub",{"href":352,"dataGaName":353,"dataGaLocation":143},"/ja-jp/demo-hub/","demo hub",{"text":355,"config":356},"The Source",{"href":357,"dataGaName":348,"dataGaLocation":143},"/ja-jp/the-source/",{"text":359,"config":360},"リモート",{"href":361,"dataGaName":362,"dataGaLocation":143},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":364,"items":365},"つなげる",[366,371,376,381,386,391],{"text":367,"config":368},"GitLabサービス",{"href":369,"dataGaName":370,"dataGaLocation":143},"/ja-jp/services/","services",{"text":372,"config":373},"コントリビュート",{"href":374,"dataGaName":375,"dataGaLocation":143},"https://contributors.gitlab.com","contribute",{"text":377,"config":378},"コミュニティ",{"href":379,"dataGaName":380,"dataGaLocation":143},"/community/","community",{"text":382,"config":383},"フォーラム",{"href":384,"dataGaName":385,"dataGaLocation":143},"https://forum.gitlab.com/","forum",{"text":387,"config":388},"イベント",{"href":389,"dataGaName":390,"dataGaLocation":143},"/events/","events",{"text":392,"config":393},"パートナー",{"href":394,"dataGaName":395,"dataGaLocation":143},"/ja-jp/partners/","partners",{"config":397,"title":400,"text":401,"link":402},{"background":398,"textColor":399},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":403,"config":404},"最新情報を読む",{"href":405,"dataGaName":406,"dataGaLocation":143},"/ja-jp/whats-new/","whats new",{"text":408,"config":409,"menu":411},"企業情報",{"dataNavLevelOne":410},"company",{"type":193,"columns":412},[413],{"items":414},[415,420,426,428,433,438,443,448,453,458],{"text":416,"config":417},"GitLabについて",{"href":418,"dataGaName":419,"dataGaLocation":143},"/ja-jp/company/","about",{"text":421,"config":422,"footerGa":425},"採用情報",{"href":423,"dataGaName":424,"dataGaLocation":143},"/jobs/","jobs",{"dataGaName":424},{"text":387,"config":427},{"href":389,"dataGaName":390,"dataGaLocation":143},{"text":429,"config":430},"経営陣",{"href":431,"dataGaName":432,"dataGaLocation":143},"/company/team/e-group/","leadership",{"text":434,"config":435},"ハンドブック",{"href":436,"dataGaName":437,"dataGaLocation":143},"https://handbook.gitlab.com/","handbook",{"text":439,"config":440},"投資家向け情報",{"href":441,"dataGaName":442,"dataGaLocation":143},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":444,"config":445},"トラストセンター",{"href":446,"dataGaName":447,"dataGaLocation":143},"/ja-jp/security/","trust center",{"text":449,"config":450},"AI Transparency Center",{"href":451,"dataGaName":452,"dataGaLocation":143},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":454,"config":455},"ニュースレター",{"href":456,"dataGaName":457,"dataGaLocation":143},"/company/contact/#contact-forms","newsletter",{"text":459,"config":460},"プレス",{"href":461,"dataGaName":462,"dataGaLocation":143},"/press/","press",{"text":464,"config":465,"menu":466},"お問い合わせ",{"dataNavLevelOne":410},{"type":193,"columns":467},[468],{"items":469},[470,475,480],{"text":471,"config":472},"お問い合わせはこちら",{"href":473,"dataGaName":474,"dataGaLocation":143},"/ja-jp/sales/","talk to sales",{"text":476,"config":477},"サポートを受ける",{"href":478,"dataGaName":479,"dataGaLocation":143},"https://support.gitlab.com/hc/en-us","support portal",{"text":481,"config":482},"カスタマーポータル",{"href":483,"dataGaName":484,"dataGaLocation":143},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":486,"login":487,"suggestions":494},"閉じる",{"text":488,"link":489},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":490,"config":491},"GitLab.com",{"href":157,"dataGaName":492,"dataGaLocation":493},"search login","search",{"text":495,"default":496},"提案",[497,499,504,506,510,514],{"text":174,"config":498},{"href":179,"dataGaName":174,"dataGaLocation":493},{"text":500,"config":501},"コード提案（AI）",{"href":502,"dataGaName":503,"dataGaLocation":493},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":17,"config":505},{"href":210,"dataGaName":17,"dataGaLocation":493},{"text":507,"config":508},"GitLab on AWS",{"href":509,"dataGaName":507,"dataGaLocation":493},"/ja-jp/partners/technology-partners/aws/",{"text":511,"config":512},"GitLab on Google Cloud",{"href":513,"dataGaName":511,"dataGaLocation":493},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":515,"config":516},"GitLabを選ぶ理由",{"href":186,"dataGaName":517,"dataGaLocation":493},"Why GitLab?",{"freeTrial":519,"mobileIcon":523,"desktopIcon":528,"secondaryButton":531},{"text":145,"config":520},{"href":521,"dataGaName":148,"dataGaLocation":522},"https://gitlab.com/-/trials/new/","nav",{"altText":524,"config":525},"GitLabアイコン",{"src":526,"dataGaName":527,"dataGaLocation":522},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":524,"config":529},{"src":530,"dataGaName":527,"dataGaLocation":522},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":304,"config":532},{"href":533,"dataGaName":534,"dataGaLocation":522},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":536,"mobileIcon":540,"desktopIcon":542},{"text":537,"config":538},"GitLab Duoの詳細について",{"href":179,"dataGaName":539,"dataGaLocation":522},"gitlab duo",{"altText":524,"config":541},{"src":526,"dataGaName":527,"dataGaLocation":522},{"altText":524,"config":543},{"src":530,"dataGaName":527,"dataGaLocation":522},{"button":545,"mobileIcon":550,"desktopIcon":552},{"text":546,"config":547},"/switch",{"href":548,"dataGaName":549,"dataGaLocation":522},"#contact","switch",{"altText":524,"config":551},{"src":526,"dataGaName":527,"dataGaLocation":522},{"altText":524,"config":553},{"src":554,"dataGaName":527,"dataGaLocation":522},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":556,"mobileIcon":561,"desktopIcon":563},{"text":557,"config":558},"料金ページに戻る",{"href":292,"dataGaName":559,"dataGaLocation":522,"icon":560},"back to pricing","GoBack",{"altText":524,"config":562},{"src":526,"dataGaName":527,"dataGaLocation":522},{"altText":524,"config":564},{"src":530,"dataGaName":527,"dataGaLocation":522},{"title":566,"button":567,"config":571},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":108,"config":568},{"href":569,"dataGaName":570,"dataGaLocation":143},"/ja-jp/gitlab-orbit/","orbit",{"layout":572,"disabled":28},"release",{"data":574},{"text":575,"source":576,"edit":582,"contribute":587,"config":592,"items":597,"minimal":805},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":577,"config":578},"ページのソースを表示",{"href":579,"dataGaName":580,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":583,"config":584},"このページを編集",{"href":585,"dataGaName":586,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":588,"config":589},"ご協力をお願いします",{"href":590,"dataGaName":591,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":593,"facebook":594,"youtube":595,"linkedin":596},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[598,643,695,738,772],{"title":290,"links":599,"subMenu":614},[600,604,609],{"text":601,"config":602},"プランの表示",{"href":292,"dataGaName":603,"dataGaLocation":581},"view plans",{"text":605,"config":606},"Premiumを選ぶ理由",{"href":607,"dataGaName":608,"dataGaLocation":581},"/ja-jp/pricing/premium/","why premium",{"text":610,"config":611},"Ultimateを選ぶ理由",{"href":612,"dataGaName":613,"dataGaLocation":581},"/ja-jp/pricing/ultimate/","why ultimate",[615],{"title":464,"links":616},[617,619,621,623,628,633,638],{"text":464,"config":618},{"href":473,"dataGaName":153,"dataGaLocation":581},{"text":476,"config":620},{"href":478,"dataGaName":479,"dataGaLocation":581},{"text":481,"config":622},{"href":483,"dataGaName":484,"dataGaLocation":581},{"text":624,"config":625},"ステータス",{"href":626,"dataGaName":627,"dataGaLocation":581},"https://status.gitlab.com/","status",{"text":629,"config":630},"利用規約",{"href":631,"dataGaName":632,"dataGaLocation":581},"/terms/","terms of use",{"text":634,"config":635},"プライバシーに関する声明",{"href":636,"dataGaName":637,"dataGaLocation":581},"/ja-jp/privacy/","privacy statement",{"text":639,"config":640},"Cookie 優先設定",{"dataGaName":641,"dataGaLocation":581,"id":642,"isOneTrustButton":132},"cookie preferences","ot-sdk-btn",{"title":189,"links":644,"subMenu":653},[645,649],{"text":646,"config":647},"DevSecOpsプラットフォーム",{"href":172,"dataGaName":648,"dataGaLocation":581},"devsecops platform",{"text":650,"config":651},"AI支援開発",{"href":179,"dataGaName":652,"dataGaLocation":581},"ai-assisted development",[654],{"title":655,"links":656},"トピック",[657,660,665,670,675,680,685,690],{"text":17,"config":658},{"href":19,"dataGaName":659,"dataGaLocation":581},"cicd",{"text":661,"config":662},"GitOps",{"href":663,"dataGaName":664,"dataGaLocation":581},"/ja-jp/topics/gitops/","gitops",{"text":666,"config":667},"DevOps",{"href":668,"dataGaName":669,"dataGaLocation":581},"/ja-jp/topics/devops/","devops",{"text":671,"config":672},"バージョン管理",{"href":673,"dataGaName":674,"dataGaLocation":581},"/ja-jp/topics/version-control/","version control",{"text":676,"config":677},"DevSecOps",{"href":678,"dataGaName":679,"dataGaLocation":581},"/ja-jp/topics/devsecops/","devsecops",{"text":681,"config":682},"クラウドネイティブ",{"href":683,"dataGaName":684,"dataGaLocation":581},"/ja-jp/topics/cloud-native/","cloud native",{"text":686,"config":687},"コーディングのためのAI",{"href":688,"dataGaName":689,"dataGaLocation":581},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":691,"config":692},"エージェント型AI",{"href":693,"dataGaName":694,"dataGaLocation":581},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":696,"links":697},"ソリューション",[698,701,703,708,712,715,718,721,723,725,728,733],{"text":233,"config":699},{"href":228,"dataGaName":700,"dataGaLocation":581},"Application Security Testing",{"text":220,"config":702},{"href":205,"dataGaName":206,"dataGaLocation":581},{"text":704,"config":705},"アジャイル開発",{"href":706,"dataGaName":707,"dataGaLocation":581},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":709,"config":710},"SCM",{"href":217,"dataGaName":711,"dataGaLocation":581},"source code management",{"text":17,"config":713},{"href":210,"dataGaName":714,"dataGaLocation":581},"continuous integration & delivery",{"text":259,"config":716},{"href":261,"dataGaName":717,"dataGaLocation":581},"value stream management",{"text":661,"config":719},{"href":720,"dataGaName":664,"dataGaLocation":581},"/ja-jp/solutions/gitops/",{"text":272,"config":722},{"href":275,"dataGaName":276,"dataGaLocation":581},{"text":278,"config":724},{"href":281,"dataGaName":282,"dataGaLocation":581},{"text":726,"config":727},"公共機関",{"href":287,"dataGaName":288,"dataGaLocation":581},{"text":729,"config":730},"教育",{"href":731,"dataGaName":732,"dataGaLocation":581},"/ja-jp/solutions/education/","education",{"text":734,"config":735},"金融サービス",{"href":736,"dataGaName":737,"dataGaLocation":581},"/ja-jp/solutions/finance/","financial services",{"title":739,"links":740},"リソース",[741,743,745,747,751,753,756,758,760,762,764,766,768,770],{"text":307,"config":742},{"href":309,"dataGaName":310,"dataGaLocation":581},{"text":312,"config":744},{"href":314,"dataGaName":315,"dataGaLocation":581},{"text":317,"config":746},{"href":319,"dataGaName":320,"dataGaLocation":581},{"text":322,"config":748},{"href":749,"dataGaName":750,"dataGaLocation":581},"https://docs.gitlab.com/ja-jp","docs",{"text":345,"config":752},{"href":347,"dataGaName":348,"dataGaLocation":581},{"text":754,"config":755},"最新リリース",{"href":405,"dataGaName":406,"dataGaLocation":581},{"text":340,"config":757},{"href":342,"dataGaName":343,"dataGaLocation":581},{"text":359,"config":759},{"href":361,"dataGaName":362,"dataGaLocation":581},{"text":367,"config":761},{"href":369,"dataGaName":370,"dataGaLocation":581},{"text":372,"config":763},{"href":374,"dataGaName":375,"dataGaLocation":581},{"text":377,"config":765},{"href":379,"dataGaName":380,"dataGaLocation":581},{"text":382,"config":767},{"href":384,"dataGaName":385,"dataGaLocation":581},{"text":387,"config":769},{"href":389,"dataGaName":390,"dataGaLocation":581},{"text":392,"config":771},{"href":394,"dataGaName":395,"dataGaLocation":581},{"title":773,"links":774},"会社情報",[775,777,779,781,783,785,789,794,796,798,800],{"text":416,"config":776},{"href":418,"dataGaName":410,"dataGaLocation":581},{"text":421,"config":778},{"href":423,"dataGaName":424,"dataGaLocation":581},{"text":429,"config":780},{"href":431,"dataGaName":432,"dataGaLocation":581},{"text":434,"config":782},{"href":436,"dataGaName":437,"dataGaLocation":581},{"text":439,"config":784},{"href":441,"dataGaName":442,"dataGaLocation":581},{"text":786,"config":787},"Sustainability",{"href":788,"dataGaName":786,"dataGaLocation":581},"/sustainability/",{"text":790,"config":791},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":792,"dataGaName":793,"dataGaLocation":581},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":444,"config":795},{"href":446,"dataGaName":447,"dataGaLocation":581},{"text":454,"config":797},{"href":456,"dataGaName":457,"dataGaLocation":581},{"text":459,"config":799},{"href":461,"dataGaName":462,"dataGaLocation":581},{"text":801,"config":802},"現代奴隷制の透明性に関する声明",{"href":803,"dataGaName":804,"dataGaLocation":581},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":806},[807,809,812],{"text":629,"config":808},{"href":631,"dataGaName":632,"dataGaLocation":581},{"text":810,"config":811},"Cookieの設定",{"dataGaName":641,"dataGaLocation":581,"id":642,"isOneTrustButton":132},{"text":634,"config":813},{"href":636,"dataGaName":637,"dataGaLocation":581},{"header":815,"blurb":816,"button":817,"secondaryButton":821},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":145,"config":818},{"href":819,"dataGaName":148,"dataGaLocation":820},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":464,"config":822},{"href":473,"dataGaName":153,"dataGaLocation":820},1786803773695]