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