[{"data":1,"prerenderedAt":790},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/implement-continuous-integration/":3,"navigation-ja-jp":138,"banner-ja-jp":552,"footer-ja-jp":565,"next-steps-ja-jp":775},{"_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":548,"_type":133,"title":549,"_source":134,"_file":550,"_stem":551,"_extension":137},"/shared/ja-jp/main-navigation","ja-jp",{"logo":142,"freeTrial":147,"sales":152,"login":157,"items":162,"search":492,"minimal":526,"duo":539},{"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,304,309,414,474],{"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":286},"製品",true,{"dataNavLevelOne":210},"solutions",{"text":212,"config":213},"すべてのソリューションを表示",{"href":214,"dataGaName":210,"dataGaLocation":146},"/ja-jp/solutions/",[216,241,264],{"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/security-compliance/","security and compliance","ShieldCheckLight",[250,255,260],{"text":251,"config":252},"Application Security Testing",{"href":253,"dataGaName":254,"dataGaLocation":146},"/solutions/application-security-testing/","Application security testing",{"text":256,"config":257},"ソフトウェアサプライチェーンの安全性",{"href":258,"dataGaLocation":146,"dataGaName":259},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":261,"config":262},"Software Compliance",{"href":263,"dataGaName":261,"dataGaLocation":146},"/solutions/software-compliance/",{"title":265,"link":266,"items":271},"測定",{"config":267},{"icon":268,"href":269,"dataGaName":270,"dataGaLocation":146},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[272,276,281],{"text":273,"config":274},"可視性と測定",{"href":269,"dataGaLocation":146,"dataGaName":275},"Visibility and Measurement",{"text":277,"config":278},"バリューストリーム管理",{"href":279,"dataGaLocation":146,"dataGaName":280},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":282,"config":283},"分析とインサイト",{"href":284,"dataGaLocation":146,"dataGaName":285},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":287,"items":288},"GitLabが活躍する場所",[289,294,299],{"text":290,"config":291},"Enterprise",{"href":292,"dataGaLocation":146,"dataGaName":293},"/ja-jp/enterprise/","enterprise",{"text":295,"config":296},"スモールビジネス",{"href":297,"dataGaLocation":146,"dataGaName":298},"/ja-jp/small-business/","small business",{"text":300,"config":301},"公共機関",{"href":302,"dataGaLocation":146,"dataGaName":303},"/ja-jp/solutions/public-sector/","public sector",{"text":305,"config":306},"価格",{"href":307,"dataGaName":308,"dataGaLocation":146,"dataNavLevelOne":308},"/ja-jp/pricing/","pricing",{"text":310,"config":311,"link":312,"lists":316,"feature":401},"関連リソース",{"dataNavLevelOne":90},{"text":313,"config":314},"すべてのリソースを表示",{"href":315,"dataGaName":90,"dataGaLocation":146},"/ja-jp/resources/",[317,350,373],{"title":318,"items":319},"はじめに",[320,325,330,335,340,345],{"text":321,"config":322},"インストール",{"href":323,"dataGaName":324,"dataGaLocation":146},"/ja-jp/install/","install",{"text":326,"config":327},"クイックスタートガイド",{"href":328,"dataGaName":329,"dataGaLocation":146},"/ja-jp/get-started/","quick setup checklists",{"text":331,"config":332},"学ぶ",{"href":333,"dataGaLocation":146,"dataGaName":334},"https://university.gitlab.com/","learn",{"text":336,"config":337},"製品ドキュメント",{"href":338,"dataGaName":339,"dataGaLocation":146},"https://docs.gitlab.com/","product documentation",{"text":341,"config":342},"ベストプラクティスビデオ",{"href":343,"dataGaName":344,"dataGaLocation":146},"/ja-jp/getting-started-videos/","best practice videos",{"text":346,"config":347},"インテグレーション",{"href":348,"dataGaName":349,"dataGaLocation":146},"/ja-jp/integrations/","integrations",{"title":351,"items":352},"検索する",[353,358,363,368],{"text":354,"config":355},"お客様成功事例",{"href":356,"dataGaName":357,"dataGaLocation":146},"/ja-jp/customers/","customer success stories",{"text":359,"config":360},"ブログ",{"href":361,"dataGaName":362,"dataGaLocation":146},"/ja-jp/blog/","blog",{"text":364,"config":365},"リモート",{"href":366,"dataGaName":367,"dataGaLocation":146},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":369,"config":370},"TeamOps",{"href":371,"dataGaName":372,"dataGaLocation":146},"/ja-jp/teamops/","teamops",{"title":374,"items":375},"つなげる",[376,381,386,391,396],{"text":377,"config":378},"GitLabサービス",{"href":379,"dataGaName":380,"dataGaLocation":146},"/ja-jp/services/","services",{"text":382,"config":383},"コミュニティ",{"href":384,"dataGaName":385,"dataGaLocation":146},"/community/","community",{"text":387,"config":388},"フォーラム",{"href":389,"dataGaName":390,"dataGaLocation":146},"https://forum.gitlab.com/","forum",{"text":392,"config":393},"イベント",{"href":394,"dataGaName":395,"dataGaLocation":146},"/events/","events",{"text":397,"config":398},"パートナー",{"href":399,"dataGaName":400,"dataGaLocation":146},"/ja-jp/partners/","partners",{"backgroundColor":402,"textColor":403,"text":404,"image":405,"link":409},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":406,"config":407},"ソースプロモカード",{"src":408},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":410,"config":411},"最新情報を読む",{"href":412,"dataGaName":413,"dataGaLocation":146},"/ja-jp/the-source/","the source",{"text":415,"config":416,"lists":418},"Company",{"dataNavLevelOne":417},"company",[419],{"items":420},[421,426,432,434,439,444,449,454,459,464,469],{"text":422,"config":423},"GitLabについて",{"href":424,"dataGaName":425,"dataGaLocation":146},"/ja-jp/company/","about",{"text":427,"config":428,"footerGa":431},"採用情報",{"href":429,"dataGaName":430,"dataGaLocation":146},"/jobs/","jobs",{"dataGaName":430},{"text":392,"config":433},{"href":394,"dataGaName":395,"dataGaLocation":146},{"text":435,"config":436},"経営陣",{"href":437,"dataGaName":438,"dataGaLocation":146},"/company/team/e-group/","leadership",{"text":440,"config":441},"チーム",{"href":442,"dataGaName":443,"dataGaLocation":146},"/company/team/","team",{"text":445,"config":446},"ハンドブック",{"href":447,"dataGaName":448,"dataGaLocation":146},"https://handbook.gitlab.com/","handbook",{"text":450,"config":451},"投資家向け情報",{"href":452,"dataGaName":453,"dataGaLocation":146},"https://ir.gitlab.com/","investor relations",{"text":455,"config":456},"トラストセンター",{"href":457,"dataGaName":458,"dataGaLocation":146},"/ja-jp/security/","trust center",{"text":460,"config":461},"AI Transparency Center",{"href":462,"dataGaName":463,"dataGaLocation":146},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":465,"config":466},"ニュースレター",{"href":467,"dataGaName":468,"dataGaLocation":146},"/company/contact/","newsletter",{"text":470,"config":471},"プレス",{"href":472,"dataGaName":473,"dataGaLocation":146},"/press/","press",{"text":153,"config":475,"lists":476},{"dataNavLevelOne":417},[477],{"items":478},[479,482,487],{"text":153,"config":480},{"href":155,"dataGaName":481,"dataGaLocation":146},"talk to sales",{"text":483,"config":484},"サポートを受ける",{"href":485,"dataGaName":486,"dataGaLocation":146},"/support/","get help",{"text":488,"config":489},"カスタマーポータル",{"href":490,"dataGaName":491,"dataGaLocation":146},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":493,"login":494,"suggestions":501},"閉じる",{"text":495,"link":496},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":497,"config":498},"GitLab.com",{"href":160,"dataGaName":499,"dataGaLocation":500},"search login","search",{"text":502,"default":503},"提案",[504,507,512,514,518,522],{"text":175,"config":505},{"href":180,"dataGaName":506,"dataGaLocation":500},"GitLab Duo (AI)",{"text":508,"config":509},"コード提案（AI）",{"href":510,"dataGaName":511,"dataGaLocation":500},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":21,"config":513},{"href":227,"dataGaName":21,"dataGaLocation":500},{"text":515,"config":516},"GitLab on AWS",{"href":517,"dataGaName":515,"dataGaLocation":500},"/ja-jp/partners/technology-partners/aws/",{"text":519,"config":520},"GitLab on Google Cloud",{"href":521,"dataGaName":519,"dataGaLocation":500},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":523,"config":524},"GitLabを選ぶ理由",{"href":187,"dataGaName":525,"dataGaLocation":500},"Why GitLab?",{"freeTrial":527,"mobileIcon":531,"desktopIcon":536},{"text":148,"config":528},{"href":529,"dataGaName":151,"dataGaLocation":530},"https://gitlab.com/-/trials/new/","nav",{"altText":532,"config":533},"GitLabアイコン",{"src":534,"dataGaName":535,"dataGaLocation":530},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":532,"config":537},{"src":538,"dataGaName":535,"dataGaLocation":530},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":540,"mobileIcon":544,"desktopIcon":546},{"text":541,"config":542},"GitLab Duoの詳細について",{"href":180,"dataGaName":543,"dataGaLocation":530},"gitlab duo",{"altText":532,"config":545},{"src":534,"dataGaName":535,"dataGaLocation":530},{"altText":532,"config":547},{"src":538,"dataGaName":535,"dataGaLocation":530},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":553,"_dir":140,"_draft":6,"_partial":6,"_locale":7,"title":554,"button":555,"config":560,"_id":562,"_type":133,"_source":134,"_file":563,"_stem":564,"_extension":137},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":556,"config":557},"ベータ版を試す",{"href":558,"dataGaName":559,"dataGaLocation":146},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":561},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":566,"_dir":140,"_draft":6,"_partial":6,"_locale":7,"data":567,"_id":771,"_type":133,"title":772,"_source":134,"_file":773,"_stem":774,"_extension":137},"/shared/ja-jp/main-footer",{"text":568,"source":569,"edit":575,"contribute":580,"config":585,"items":590,"minimal":763},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":570,"config":571},"ページのソースを表示",{"href":572,"dataGaName":573,"dataGaLocation":574},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":576,"config":577},"このページを編集",{"href":578,"dataGaName":579,"dataGaLocation":574},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":581,"config":582},"ご協力をお願いします",{"href":583,"dataGaName":584,"dataGaLocation":574},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":586,"facebook":587,"youtube":588,"linkedin":589},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[591,614,668,701,735],{"title":164,"links":592,"subMenu":597},[593],{"text":594,"config":595},"DevSecOpsプラットフォーム",{"href":173,"dataGaName":596,"dataGaLocation":574},"devsecops platform",[598],{"title":305,"links":599},[600,604,609],{"text":601,"config":602},"プランの表示",{"href":307,"dataGaName":603,"dataGaLocation":574},"view plans",{"text":605,"config":606},"Premiumを選ぶ理由",{"href":607,"dataGaName":608,"dataGaLocation":574},"/ja-jp/pricing/premium/","why premium",{"text":610,"config":611},"Ultimateを選ぶ理由",{"href":612,"dataGaName":613,"dataGaLocation":574},"/ja-jp/pricing/ultimate/","why ultimate",{"title":615,"links":616},"ソリューション",[617,622,625,627,632,637,641,644,647,652,654,656,658,663],{"text":618,"config":619},"デジタルトランスフォーメーション",{"href":620,"dataGaName":621,"dataGaLocation":574},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":623,"config":624},"セキュリティとコンプライアンス",{"href":253,"dataGaName":254,"dataGaLocation":574},{"text":238,"config":626},{"href":222,"dataGaName":223,"dataGaLocation":574},{"text":628,"config":629},"アジャイル開発",{"href":630,"dataGaName":631,"dataGaLocation":574},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":633,"config":634},"クラウドトランスフォーメーション",{"href":635,"dataGaName":636,"dataGaLocation":574},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":638,"config":639},"SCM",{"href":235,"dataGaName":640,"dataGaLocation":574},"source code management",{"text":21,"config":642},{"href":227,"dataGaName":643,"dataGaLocation":574},"continuous integration & delivery",{"text":277,"config":645},{"href":279,"dataGaName":646,"dataGaLocation":574},"value stream management",{"text":648,"config":649},"GitOps",{"href":650,"dataGaName":651,"dataGaLocation":574},"/ja-jp/solutions/gitops/","gitops",{"text":290,"config":653},{"href":292,"dataGaName":293,"dataGaLocation":574},{"text":295,"config":655},{"href":297,"dataGaName":298,"dataGaLocation":574},{"text":300,"config":657},{"href":302,"dataGaName":303,"dataGaLocation":574},{"text":659,"config":660},"教育",{"href":661,"dataGaName":662,"dataGaLocation":574},"/ja-jp/solutions/education/","education",{"text":664,"config":665},"金融サービス",{"href":666,"dataGaName":667,"dataGaLocation":574},"/ja-jp/solutions/finance/","financial services",{"title":310,"links":669},[670,672,674,676,679,681,685,687,689,691,693,695,697,699],{"text":321,"config":671},{"href":323,"dataGaName":324,"dataGaLocation":574},{"text":326,"config":673},{"href":328,"dataGaName":329,"dataGaLocation":574},{"text":331,"config":675},{"href":333,"dataGaName":334,"dataGaLocation":574},{"text":336,"config":677},{"href":338,"dataGaName":678,"dataGaLocation":574},"docs",{"text":359,"config":680},{"href":361,"dataGaName":362},{"text":682,"config":683},"お客様の成功事例",{"href":684,"dataGaLocation":574},"/customers/",{"text":354,"config":686},{"href":356,"dataGaName":357,"dataGaLocation":574},{"text":364,"config":688},{"href":366,"dataGaName":367,"dataGaLocation":574},{"text":377,"config":690},{"href":379,"dataGaName":380,"dataGaLocation":574},{"text":369,"config":692},{"href":371,"dataGaName":372,"dataGaLocation":574},{"text":382,"config":694},{"href":384,"dataGaName":385,"dataGaLocation":574},{"text":387,"config":696},{"href":389,"dataGaName":390,"dataGaLocation":574},{"text":392,"config":698},{"href":394,"dataGaName":395,"dataGaLocation":574},{"text":397,"config":700},{"href":399,"dataGaName":400,"dataGaLocation":574},{"title":415,"links":702},[703,705,707,709,711,713,715,719,724,726,728,730],{"text":422,"config":704},{"href":424,"dataGaName":417,"dataGaLocation":574},{"text":427,"config":706},{"href":429,"dataGaName":430,"dataGaLocation":574},{"text":435,"config":708},{"href":437,"dataGaName":438,"dataGaLocation":574},{"text":440,"config":710},{"href":442,"dataGaName":443,"dataGaLocation":574},{"text":445,"config":712},{"href":447,"dataGaName":448,"dataGaLocation":574},{"text":450,"config":714},{"href":452,"dataGaName":453,"dataGaLocation":574},{"text":716,"config":717},"Sustainability",{"href":718,"dataGaName":716,"dataGaLocation":574},"/sustainability/",{"text":720,"config":721},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":722,"dataGaName":723,"dataGaLocation":574},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":455,"config":725},{"href":457,"dataGaName":458,"dataGaLocation":574},{"text":465,"config":727},{"href":467,"dataGaName":468,"dataGaLocation":574},{"text":470,"config":729},{"href":472,"dataGaName":473,"dataGaLocation":574},{"text":731,"config":732},"現代奴隷制の透明性に関する声明",{"href":733,"dataGaName":734,"dataGaLocation":574},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":153,"links":736},[737,739,741,743,748,753,758],{"text":153,"config":738},{"href":155,"dataGaName":156,"dataGaLocation":574},{"text":483,"config":740},{"href":485,"dataGaName":486,"dataGaLocation":574},{"text":488,"config":742},{"href":490,"dataGaName":491,"dataGaLocation":574},{"text":744,"config":745},"ステータス",{"href":746,"dataGaName":747,"dataGaLocation":574},"https://status.gitlab.com/","status",{"text":749,"config":750},"利用規約",{"href":751,"dataGaName":752,"dataGaLocation":574},"/terms/","terms of use",{"text":754,"config":755},"プライバシーに関する声明",{"href":756,"dataGaName":757,"dataGaLocation":574},"/ja-jp/privacy/","privacy statement",{"text":759,"config":760},"Cookieの設定",{"dataGaName":761,"dataGaLocation":574,"id":762,"isOneTrustButton":208},"cookie preferences","ot-sdk-btn",{"items":764},[765,767,769],{"text":749,"config":766},{"href":751,"dataGaName":752,"dataGaLocation":574},{"text":754,"config":768},{"href":756,"dataGaName":757,"dataGaLocation":574},{"text":759,"config":770},{"dataGaName":761,"dataGaLocation":574,"id":762,"isOneTrustButton":208},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":776,"_dir":140,"_draft":6,"_partial":6,"_locale":7,"header":777,"eyebrow":778,"blurb":779,"button":780,"secondaryButton":784,"_id":786,"_type":133,"title":787,"_source":134,"_file":788,"_stem":789,"_extension":137},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":148,"config":781},{"href":782,"dataGaName":151,"dataGaLocation":783},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":153,"config":785},{"href":155,"dataGaName":156,"dataGaLocation":783},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1758326268393]