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