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