[{"data":1,"prerenderedAt":819},["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":594,"next-steps-ja-jp":804},{"_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":589,"_id":591,"_type":162,"_source":163,"_file":592,"_stem":593,"_extension":166},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能に！",{"text":585,"config":586},"詳しく見る",{"href":587,"dataGaName":588,"dataGaLocation":175},"/gitlab-duo/agent-platform/","duo banner",{"layout":590},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":595,"_dir":169,"_draft":6,"_partial":6,"_locale":7,"data":596,"_id":800,"_type":162,"title":801,"_source":163,"_file":802,"_stem":803,"_extension":166},"/shared/ja-jp/main-footer",{"text":597,"source":598,"edit":604,"contribute":609,"config":614,"items":619,"minimal":792},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":599,"config":600},"ページのソースを表示",{"href":601,"dataGaName":602,"dataGaLocation":603},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":605,"config":606},"このページを編集",{"href":607,"dataGaName":608,"dataGaLocation":603},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":610,"config":611},"ご協力をお願いします",{"href":612,"dataGaName":613,"dataGaLocation":603},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":615,"facebook":616,"youtube":617,"linkedin":618},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[620,643,697,730,764],{"title":193,"links":621,"subMenu":626},[622],{"text":623,"config":624},"DevSecOpsプラットフォーム",{"href":202,"dataGaName":625,"dataGaLocation":603},"devsecops platform",[627],{"title":334,"links":628},[629,633,638],{"text":630,"config":631},"プランの表示",{"href":336,"dataGaName":632,"dataGaLocation":603},"view plans",{"text":634,"config":635},"Premiumを選ぶ理由",{"href":636,"dataGaName":637,"dataGaLocation":603},"/ja-jp/pricing/premium/","why premium",{"text":639,"config":640},"Ultimateを選ぶ理由",{"href":641,"dataGaName":642,"dataGaLocation":603},"/ja-jp/pricing/ultimate/","why ultimate",{"title":644,"links":645},"ソリューション",[646,651,654,656,661,666,670,673,676,681,683,685,687,692],{"text":647,"config":648},"デジタルトランスフォーメーション",{"href":649,"dataGaName":650,"dataGaLocation":603},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":280,"config":652},{"href":275,"dataGaName":653,"dataGaLocation":603},"security & compliance",{"text":267,"config":655},{"href":251,"dataGaName":252,"dataGaLocation":603},{"text":657,"config":658},"アジャイル開発",{"href":659,"dataGaName":660,"dataGaLocation":603},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":662,"config":663},"クラウドトランスフォーメーション",{"href":664,"dataGaName":665,"dataGaLocation":603},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":667,"config":668},"SCM",{"href":149,"dataGaName":669,"dataGaLocation":603},"source code management",{"text":255,"config":671},{"href":257,"dataGaName":672,"dataGaLocation":603},"continuous integration & delivery",{"text":306,"config":674},{"href":308,"dataGaName":675,"dataGaLocation":603},"value stream management",{"text":677,"config":678},"GitOps",{"href":679,"dataGaName":680,"dataGaLocation":603},"/ja-jp/solutions/gitops/","gitops",{"text":319,"config":682},{"href":321,"dataGaName":322,"dataGaLocation":603},{"text":324,"config":684},{"href":326,"dataGaName":327,"dataGaLocation":603},{"text":329,"config":686},{"href":331,"dataGaName":332,"dataGaLocation":603},{"text":688,"config":689},"教育",{"href":690,"dataGaName":691,"dataGaLocation":603},"/ja-jp/solutions/education/","education",{"text":693,"config":694},"金融サービス",{"href":695,"dataGaName":696,"dataGaLocation":603},"/ja-jp/solutions/finance/","financial services",{"title":339,"links":698},[699,701,703,705,708,710,714,716,718,720,722,724,726,728],{"text":350,"config":700},{"href":352,"dataGaName":353,"dataGaLocation":603},{"text":355,"config":702},{"href":357,"dataGaName":358,"dataGaLocation":603},{"text":360,"config":704},{"href":362,"dataGaName":363,"dataGaLocation":603},{"text":365,"config":706},{"href":367,"dataGaName":707,"dataGaLocation":603},"docs",{"text":388,"config":709},{"href":390,"dataGaName":391},{"text":711,"config":712},"お客様の成功事例",{"href":713,"dataGaLocation":603},"/customers/",{"text":383,"config":715},{"href":385,"dataGaName":386,"dataGaLocation":603},{"text":393,"config":717},{"href":395,"dataGaName":396,"dataGaLocation":603},{"text":406,"config":719},{"href":408,"dataGaName":409,"dataGaLocation":603},{"text":398,"config":721},{"href":400,"dataGaName":401,"dataGaLocation":603},{"text":411,"config":723},{"href":413,"dataGaName":414,"dataGaLocation":603},{"text":416,"config":725},{"href":418,"dataGaName":419,"dataGaLocation":603},{"text":421,"config":727},{"href":423,"dataGaName":424,"dataGaLocation":603},{"text":426,"config":729},{"href":428,"dataGaName":429,"dataGaLocation":603},{"title":444,"links":731},[732,734,736,738,740,742,744,748,753,755,757,759],{"text":451,"config":733},{"href":453,"dataGaName":446,"dataGaLocation":603},{"text":456,"config":735},{"href":458,"dataGaName":459,"dataGaLocation":603},{"text":464,"config":737},{"href":466,"dataGaName":467,"dataGaLocation":603},{"text":469,"config":739},{"href":471,"dataGaName":472,"dataGaLocation":603},{"text":474,"config":741},{"href":476,"dataGaName":477,"dataGaLocation":603},{"text":479,"config":743},{"href":481,"dataGaName":482,"dataGaLocation":603},{"text":745,"config":746},"Sustainability",{"href":747,"dataGaName":745,"dataGaLocation":603},"/sustainability/",{"text":749,"config":750},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":751,"dataGaName":752,"dataGaLocation":603},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":484,"config":754},{"href":486,"dataGaName":487,"dataGaLocation":603},{"text":494,"config":756},{"href":496,"dataGaName":497,"dataGaLocation":603},{"text":499,"config":758},{"href":501,"dataGaName":502,"dataGaLocation":603},{"text":760,"config":761},"現代奴隷制の透明性に関する声明",{"href":762,"dataGaName":763,"dataGaLocation":603},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":182,"links":765},[766,768,770,772,777,782,787],{"text":182,"config":767},{"href":184,"dataGaName":185,"dataGaLocation":603},{"text":512,"config":769},{"href":514,"dataGaName":515,"dataGaLocation":603},{"text":517,"config":771},{"href":519,"dataGaName":520,"dataGaLocation":603},{"text":773,"config":774},"ステータス",{"href":775,"dataGaName":776,"dataGaLocation":603},"https://status.gitlab.com/","status",{"text":778,"config":779},"利用規約",{"href":780,"dataGaName":781,"dataGaLocation":603},"/terms/","terms of use",{"text":783,"config":784},"プライバシーに関する声明",{"href":785,"dataGaName":786,"dataGaLocation":603},"/ja-jp/privacy/","privacy statement",{"text":788,"config":789},"Cookieの設定",{"dataGaName":790,"dataGaLocation":603,"id":791,"isOneTrustButton":237},"cookie preferences","ot-sdk-btn",{"items":793},[794,796,798],{"text":778,"config":795},{"href":780,"dataGaName":781,"dataGaLocation":603},{"text":783,"config":797},{"href":785,"dataGaName":786,"dataGaLocation":603},{"text":788,"config":799},{"dataGaName":790,"dataGaLocation":603,"id":791,"isOneTrustButton":237},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":805,"_dir":169,"_draft":6,"_partial":6,"_locale":7,"header":806,"eyebrow":807,"blurb":808,"button":809,"secondaryButton":813,"_id":815,"_type":162,"title":816,"_source":163,"_file":817,"_stem":818,"_extension":166},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":177,"config":810},{"href":811,"dataGaName":180,"dataGaLocation":812},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":182,"config":814},{"href":184,"dataGaName":185,"dataGaLocation":812},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1754424547945]