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