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