[{"data":1,"prerenderedAt":789},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/implement-continuous-integration/":3,"navigation-ja-jp":138,"banner-ja-jp":552,"footer-ja-jp":564,"next-steps-ja-jp":774},{"_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},"/topics/ci-cd/",{"title":25},"Implement continuous integration",{"type":27,"componentName":27,"componentContent":28},"TopicsHero",{"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,254,259],{"text":251,"config":252},"セキュリティとコンプライアンス",{"href":246,"dataGaLocation":146,"dataGaName":253},"Security & Compliance",{"text":255,"config":256},"ソフトウェアサプライチェーンの安全性",{"href":257,"dataGaLocation":146,"dataGaName":258},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":260,"config":261},"コンプライアンスとガバナンス",{"href":262,"dataGaLocation":146,"dataGaName":263},"/ja-jp/solutions/continuous-software-compliance/","Compliance and governance",{"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},"/images/navigation/the-source-promo-card.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},"/images/brand/gitlab-logo-tanuki.svg","gitlab icon",{"altText":532,"config":537},{"src":538,"dataGaName":535,"dataGaLocation":530},"/images/brand/gitlab-logo-type.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":559,"_id":561,"_type":133,"_source":134,"_file":562,"_stem":563,"_extension":137},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":110,"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,700,734],{"title":164,"links":591,"subMenu":596},[592],{"text":593,"config":594},"DevSecOpsプラットフォーム",{"href":173,"dataGaName":595,"dataGaLocation":573},"devsecops platform",[597],{"title":305,"links":598},[599,603,608],{"text":600,"config":601},"プランの表示",{"href":307,"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":251,"config":622},{"href":246,"dataGaName":623,"dataGaLocation":573},"security & compliance",{"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":277,"config":644},{"href":279,"dataGaName":645,"dataGaLocation":573},"value stream management",{"text":647,"config":648},"GitOps",{"href":649,"dataGaName":650,"dataGaLocation":573},"/ja-jp/solutions/gitops/","gitops",{"text":290,"config":652},{"href":292,"dataGaName":293,"dataGaLocation":573},{"text":295,"config":654},{"href":297,"dataGaName":298,"dataGaLocation":573},{"text":300,"config":656},{"href":302,"dataGaName":303,"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":310,"links":668},[669,671,673,675,678,680,684,686,688,690,692,694,696,698],{"text":321,"config":670},{"href":323,"dataGaName":324,"dataGaLocation":573},{"text":326,"config":672},{"href":328,"dataGaName":329,"dataGaLocation":573},{"text":331,"config":674},{"href":333,"dataGaName":334,"dataGaLocation":573},{"text":336,"config":676},{"href":338,"dataGaName":677,"dataGaLocation":573},"docs",{"text":359,"config":679},{"href":361,"dataGaName":362},{"text":681,"config":682},"お客様の成功事例",{"href":683,"dataGaLocation":573},"/customers/",{"text":354,"config":685},{"href":356,"dataGaName":357,"dataGaLocation":573},{"text":364,"config":687},{"href":366,"dataGaName":367,"dataGaLocation":573},{"text":377,"config":689},{"href":379,"dataGaName":380,"dataGaLocation":573},{"text":369,"config":691},{"href":371,"dataGaName":372,"dataGaLocation":573},{"text":382,"config":693},{"href":384,"dataGaName":385,"dataGaLocation":573},{"text":387,"config":695},{"href":389,"dataGaName":390,"dataGaLocation":573},{"text":392,"config":697},{"href":394,"dataGaName":395,"dataGaLocation":573},{"text":397,"config":699},{"href":399,"dataGaName":400,"dataGaLocation":573},{"title":415,"links":701},[702,704,706,708,710,712,714,718,723,725,727,729],{"text":422,"config":703},{"href":424,"dataGaName":417,"dataGaLocation":573},{"text":427,"config":705},{"href":429,"dataGaName":430,"dataGaLocation":573},{"text":435,"config":707},{"href":437,"dataGaName":438,"dataGaLocation":573},{"text":440,"config":709},{"href":442,"dataGaName":443,"dataGaLocation":573},{"text":445,"config":711},{"href":447,"dataGaName":448,"dataGaLocation":573},{"text":450,"config":713},{"href":452,"dataGaName":453,"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":455,"config":724},{"href":457,"dataGaName":458,"dataGaLocation":573},{"text":465,"config":726},{"href":467,"dataGaName":468,"dataGaLocation":573},{"text":470,"config":728},{"href":472,"dataGaName":473,"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":483,"config":739},{"href":485,"dataGaName":486,"dataGaLocation":573},{"text":488,"config":741},{"href":490,"dataGaName":491,"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",1753475507486]