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