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