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