[{"data":1,"prerenderedAt":852},["ShallowReactive",2],{"/ja-jp/topics/version-control/what-are-gitlab-flow-best-practices":3,"navigation-ja-jp":167,"banner-ja-jp":594,"footer-ja-jp":602,"next-steps-ja-jp":843},{"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},"/ja-jp/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/ja-jp/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","DxgFoxlOIsLCKj5BCNtRPeHN6ITA8ZjE1exYNR8yX9k",{"logo":168,"freeTrial":173,"sales":178,"login":183,"items":188,"search":514,"minimal":547,"duo":564,"switchNav":573,"pricingDeployment":584},{"config":169},{"href":170,"dataGaName":171,"dataGaLocation":172},"/ja-jp/","gitlab logo","header",{"text":174,"config":175},"無料トライアルを開始",{"href":176,"dataGaName":177,"dataGaLocation":172},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":179,"config":180},"デモをリクエスト",{"href":181,"dataGaName":182,"dataGaLocation":172},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":184,"config":185},"サインイン",{"href":186,"dataGaName":187,"dataGaLocation":172},"https://gitlab.com/users/sign_in/","sign in",[189,217,318,323,436,492],{"text":190,"config":191,"menu":193},"プラットフォーム",{"dataNavLevelOne":192},"platform",{"type":194,"columns":195},"cards",[196,202,210],{"title":190,"description":197,"link":198},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":199,"config":200},"プラットフォームの詳細はこちら",{"href":201,"dataGaName":192,"dataGaLocation":172},"/ja-jp/platform/",{"title":203,"description":204,"link":205},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":206,"config":207},"GitLab Duoのご紹介",{"href":208,"dataGaName":209,"dataGaLocation":172},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":211,"description":212,"link":213},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":146,"config":214},{"href":215,"dataGaName":216,"dataGaLocation":172},"/ja-jp/why-gitlab/","why gitlab",{"text":218,"left":162,"config":219,"menu":221},"製品",{"dataNavLevelOne":220},"solutions",{"type":222,"link":223,"columns":227,"feature":297},"lists",{"text":224,"config":225},"すべてのソリューションを表示",{"href":226,"dataGaName":220,"dataGaLocation":172},"/ja-jp/solutions/",[228,252,275],{"title":229,"description":230,"link":231,"items":236},"自動化","CI/CDと自動化でデプロイを加速",{"config":232},{"icon":233,"href":234,"dataGaName":235,"dataGaLocation":172},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[237,241,244,248],{"text":238,"config":239},"CI/CD",{"href":240,"dataGaLocation":172,"dataGaName":238},"/ja-jp/solutions/continuous-integration/",{"text":203,"config":242},{"href":208,"dataGaLocation":172,"dataGaName":243},"gitlab duo agent platform - product menu",{"text":245,"config":246},"ソースコード管理",{"href":148,"dataGaLocation":172,"dataGaName":247},"Source Code Management",{"text":249,"config":250},"自動化されたソフトウェアデリバリー",{"href":234,"dataGaLocation":172,"dataGaName":251},"Automated software delivery",{"title":253,"description":254,"link":255,"items":260},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":256},{"href":257,"dataGaName":258,"dataGaLocation":172,"icon":259},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[261,265,270],{"text":262,"config":263},"アプリケーションセキュリティテスト",{"href":257,"dataGaName":264,"dataGaLocation":172},"Application security testing",{"text":266,"config":267},"ソフトウェアサプライチェーンセキュリティ",{"href":268,"dataGaLocation":172,"dataGaName":269},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":271,"config":272},"ソフトウェアコンプライアンス",{"href":273,"dataGaName":274,"dataGaLocation":172},"/ja-jp/solutions/software-compliance/","software compliance",{"title":276,"link":277,"items":282},"測定",{"config":278},{"icon":279,"href":280,"dataGaName":281,"dataGaLocation":172},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[283,287,292],{"text":284,"config":285},"可視性と測定",{"href":280,"dataGaLocation":172,"dataGaName":286},"Visibility and Measurement",{"text":288,"config":289},"バリューストリーム管理",{"href":290,"dataGaLocation":172,"dataGaName":291},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":293,"config":294},"分析とインサイト",{"href":295,"dataGaLocation":172,"dataGaName":296},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":298,"type":222,"items":299},"GitLabが活躍する場所",[300,306,312],{"text":301,"config":302},"大企業",{"icon":303,"href":304,"dataGaLocation":172,"dataGaName":305},"Building","/ja-jp/enterprise/","enterprise",{"text":307,"config":308},"スモールビジネス",{"icon":309,"href":310,"dataGaLocation":172,"dataGaName":311},"Work","/ja-jp/small-business/","small business",{"text":313,"config":314},"公共部門",{"icon":315,"href":316,"dataGaLocation":172,"dataGaName":317},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":319,"config":320},"価格",{"href":321,"dataGaName":322,"dataGaLocation":172,"dataNavLevelOne":322},"/ja-jp/pricing/","pricing",{"text":324,"config":325,"menu":326},"関連リソース",{"dataNavLevelOne":155},{"type":222,"link":327,"columns":331,"feature":425},{"text":328,"config":329},"すべてのリソースを表示",{"href":330,"dataGaName":155,"dataGaLocation":172},"/ja-jp/resources/",[332,365,392],{"title":333,"items":334},"はじめに",[335,340,345,350,355,360],{"text":336,"config":337},"インストール",{"href":338,"dataGaName":339,"dataGaLocation":172},"/ja-jp/install/","install",{"text":341,"config":342},"クイックスタートガイド",{"href":343,"dataGaName":344,"dataGaLocation":172},"/ja-jp/get-started/","quick setup checklists",{"text":346,"config":347},"学ぶ",{"href":348,"dataGaLocation":172,"dataGaName":349},"https://university.gitlab.com/","learn",{"text":351,"config":352},"製品ドキュメント",{"href":353,"dataGaName":354,"dataGaLocation":172},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":356,"config":357},"ベストプラクティスビデオ",{"href":358,"dataGaName":359,"dataGaLocation":172},"/ja-jp/getting-started-videos/","best practice videos",{"text":361,"config":362},"インテグレーション",{"href":363,"dataGaName":364,"dataGaLocation":172},"/ja-jp/integrations/","integrations",{"title":366,"items":367},"検索する",[368,373,378,383,387],{"text":369,"config":370},"お客様成功事例",{"href":371,"dataGaName":372,"dataGaLocation":172},"/ja-jp/customers/","customer success stories",{"text":374,"config":375},"ブログ",{"href":376,"dataGaName":377,"dataGaLocation":172},"/ja-jp/blog/","blog",{"text":379,"config":380},"Demo Hub",{"href":381,"dataGaName":382,"dataGaLocation":172},"/ja-jp/demo-hub/","demo hub",{"text":384,"config":385},"The Source",{"href":386,"dataGaName":377,"dataGaLocation":172},"/ja-jp/the-source/",{"text":388,"config":389},"リモート",{"href":390,"dataGaName":391,"dataGaLocation":172},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":393,"items":394},"つなげる",[395,400,405,410,415,420],{"text":396,"config":397},"GitLabサービス",{"href":398,"dataGaName":399,"dataGaLocation":172},"/ja-jp/services/","services",{"text":401,"config":402},"コントリビュート",{"href":403,"dataGaName":404,"dataGaLocation":172},"https://contributors.gitlab.com","contribute",{"text":406,"config":407},"コミュニティ",{"href":408,"dataGaName":409,"dataGaLocation":172},"/community/","community",{"text":411,"config":412},"フォーラム",{"href":413,"dataGaName":414,"dataGaLocation":172},"https://forum.gitlab.com/","forum",{"text":416,"config":417},"イベント",{"href":418,"dataGaName":419,"dataGaLocation":172},"/events/","events",{"text":421,"config":422},"パートナー",{"href":423,"dataGaName":424,"dataGaLocation":172},"/ja-jp/partners/","partners",{"config":426,"title":429,"text":430,"link":431},{"background":427,"textColor":428},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":432,"config":433},"最新情報を読む",{"href":434,"dataGaName":435,"dataGaLocation":172},"/ja-jp/whats-new/","whats new",{"text":437,"config":438,"menu":440},"企業情報",{"dataNavLevelOne":439},"company",{"type":222,"columns":441},[442],{"items":443},[444,449,455,457,462,467,472,477,482,487],{"text":445,"config":446},"GitLabについて",{"href":447,"dataGaName":448,"dataGaLocation":172},"/ja-jp/company/","about",{"text":450,"config":451,"footerGa":454},"採用情報",{"href":452,"dataGaName":453,"dataGaLocation":172},"/jobs/","jobs",{"dataGaName":453},{"text":416,"config":456},{"href":418,"dataGaName":419,"dataGaLocation":172},{"text":458,"config":459},"経営陣",{"href":460,"dataGaName":461,"dataGaLocation":172},"/company/team/e-group/","leadership",{"text":463,"config":464},"ハンドブック",{"href":465,"dataGaName":466,"dataGaLocation":172},"https://handbook.gitlab.com/","handbook",{"text":468,"config":469},"投資家向け情報",{"href":470,"dataGaName":471,"dataGaLocation":172},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":473,"config":474},"トラストセンター",{"href":475,"dataGaName":476,"dataGaLocation":172},"/ja-jp/security/","trust center",{"text":478,"config":479},"AI Transparency Center",{"href":480,"dataGaName":481,"dataGaLocation":172},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":483,"config":484},"ニュースレター",{"href":485,"dataGaName":486,"dataGaLocation":172},"/company/contact/#contact-forms","newsletter",{"text":488,"config":489},"プレス",{"href":490,"dataGaName":491,"dataGaLocation":172},"/press/","press",{"text":493,"config":494,"menu":495},"お問い合わせ",{"dataNavLevelOne":439},{"type":222,"columns":496},[497],{"items":498},[499,504,509],{"text":500,"config":501},"お問い合わせはこちら",{"href":502,"dataGaName":503,"dataGaLocation":172},"/ja-jp/sales/","talk to sales",{"text":505,"config":506},"サポートを受ける",{"href":507,"dataGaName":508,"dataGaLocation":172},"https://support.gitlab.com/hc/en-us","support portal",{"text":510,"config":511},"カスタマーポータル",{"href":512,"dataGaName":513,"dataGaLocation":172},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":515,"login":516,"suggestions":523},"閉じる",{"text":517,"link":518},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":519,"config":520},"GitLab.com",{"href":186,"dataGaName":521,"dataGaLocation":522},"search login","search",{"text":524,"default":525},"提案",[526,528,533,535,539,543],{"text":203,"config":527},{"href":208,"dataGaName":203,"dataGaLocation":522},{"text":529,"config":530},"コード提案（AI）",{"href":531,"dataGaName":532,"dataGaLocation":522},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":238,"config":534},{"href":240,"dataGaName":238,"dataGaLocation":522},{"text":536,"config":537},"GitLab on AWS",{"href":538,"dataGaName":536,"dataGaLocation":522},"/ja-jp/partners/technology-partners/aws/",{"text":540,"config":541},"GitLab on Google Cloud",{"href":542,"dataGaName":540,"dataGaLocation":522},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":544,"config":545},"GitLabを選ぶ理由",{"href":215,"dataGaName":546,"dataGaLocation":522},"Why GitLab?",{"freeTrial":548,"mobileIcon":552,"desktopIcon":557,"secondaryButton":560},{"text":174,"config":549},{"href":550,"dataGaName":177,"dataGaLocation":551},"https://gitlab.com/-/trials/new/","nav",{"altText":553,"config":554},"GitLabアイコン",{"src":555,"dataGaName":556,"dataGaLocation":551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":553,"config":558},{"src":559,"dataGaName":556,"dataGaLocation":551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":333,"config":561},{"href":562,"dataGaName":563,"dataGaLocation":551},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":565,"mobileIcon":569,"desktopIcon":571},{"text":566,"config":567},"GitLab Duoの詳細について",{"href":208,"dataGaName":568,"dataGaLocation":551},"gitlab duo",{"altText":553,"config":570},{"src":555,"dataGaName":556,"dataGaLocation":551},{"altText":553,"config":572},{"src":559,"dataGaName":556,"dataGaLocation":551},{"button":574,"mobileIcon":579,"desktopIcon":581},{"text":575,"config":576},"/switch",{"href":577,"dataGaName":578,"dataGaLocation":551},"#contact","switch",{"altText":553,"config":580},{"src":555,"dataGaName":556,"dataGaLocation":551},{"altText":553,"config":582},{"src":583,"dataGaName":556,"dataGaLocation":551},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":585,"mobileIcon":590,"desktopIcon":592},{"text":586,"config":587},"料金ページに戻る",{"href":321,"dataGaName":588,"dataGaLocation":551,"icon":589},"back to pricing","GoBack",{"altText":553,"config":591},{"src":555,"dataGaName":556,"dataGaLocation":551},{"altText":553,"config":593},{"src":559,"dataGaName":556,"dataGaLocation":551},{"title":595,"button":596,"config":600},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":146,"config":597},{"href":598,"dataGaName":599,"dataGaLocation":172},"/ja-jp/gitlab-orbit/","orbit",{"layout":601,"disabled":29},"release",{"data":603},{"text":604,"source":605,"edit":611,"contribute":616,"config":621,"items":626,"minimal":834},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":606,"config":607},"ページのソースを表示",{"href":608,"dataGaName":609,"dataGaLocation":610},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":612,"config":613},"このページを編集",{"href":614,"dataGaName":615,"dataGaLocation":610},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":617,"config":618},"ご協力をお願いします",{"href":619,"dataGaName":620,"dataGaLocation":610},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":622,"facebook":623,"youtube":624,"linkedin":625},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[627,672,724,767,801],{"title":319,"links":628,"subMenu":643},[629,633,638],{"text":630,"config":631},"プランの表示",{"href":321,"dataGaName":632,"dataGaLocation":610},"view plans",{"text":634,"config":635},"Premiumを選ぶ理由",{"href":636,"dataGaName":637,"dataGaLocation":610},"/ja-jp/pricing/premium/","why premium",{"text":639,"config":640},"Ultimateを選ぶ理由",{"href":641,"dataGaName":642,"dataGaLocation":610},"/ja-jp/pricing/ultimate/","why ultimate",[644],{"title":493,"links":645},[646,648,650,652,657,662,667],{"text":493,"config":647},{"href":502,"dataGaName":182,"dataGaLocation":610},{"text":505,"config":649},{"href":507,"dataGaName":508,"dataGaLocation":610},{"text":510,"config":651},{"href":512,"dataGaName":513,"dataGaLocation":610},{"text":653,"config":654},"ステータス",{"href":655,"dataGaName":656,"dataGaLocation":610},"https://status.gitlab.com/","status",{"text":658,"config":659},"利用規約",{"href":660,"dataGaName":661,"dataGaLocation":610},"/terms/","terms of use",{"text":663,"config":664},"プライバシーに関する声明",{"href":665,"dataGaName":666,"dataGaLocation":610},"/ja-jp/privacy/","privacy statement",{"text":668,"config":669},"Cookie 優先設定",{"dataGaName":670,"dataGaLocation":610,"id":671,"isOneTrustButton":162},"cookie preferences","ot-sdk-btn",{"title":218,"links":673,"subMenu":682},[674,678],{"text":675,"config":676},"DevSecOpsプラットフォーム",{"href":201,"dataGaName":677,"dataGaLocation":610},"devsecops platform",{"text":679,"config":680},"AI支援開発",{"href":208,"dataGaName":681,"dataGaLocation":610},"ai-assisted development",[683],{"title":684,"links":685},"トピック",[686,690,695,700,704,709,714,719],{"text":238,"config":687},{"href":688,"dataGaName":689,"dataGaLocation":610},"/ja-jp/topics/ci-cd/","cicd",{"text":691,"config":692},"GitOps",{"href":693,"dataGaName":694,"dataGaLocation":610},"/ja-jp/topics/gitops/","gitops",{"text":696,"config":697},"DevOps",{"href":698,"dataGaName":699,"dataGaLocation":610},"/ja-jp/topics/devops/","devops",{"text":701,"config":702},"バージョン管理",{"href":19,"dataGaName":703,"dataGaLocation":610},"version control",{"text":705,"config":706},"DevSecOps",{"href":707,"dataGaName":708,"dataGaLocation":610},"/ja-jp/topics/devsecops/","devsecops",{"text":710,"config":711},"クラウドネイティブ",{"href":712,"dataGaName":713,"dataGaLocation":610},"/ja-jp/topics/cloud-native/","cloud native",{"text":715,"config":716},"コーディングのためのAI",{"href":717,"dataGaName":718,"dataGaLocation":610},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":720,"config":721},"エージェント型AI",{"href":722,"dataGaName":723,"dataGaLocation":610},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":725,"links":726},"ソリューション",[727,730,732,737,741,744,747,750,752,754,757,762],{"text":262,"config":728},{"href":257,"dataGaName":729,"dataGaLocation":610},"Application Security Testing",{"text":249,"config":731},{"href":234,"dataGaName":235,"dataGaLocation":610},{"text":733,"config":734},"アジャイル開発",{"href":735,"dataGaName":736,"dataGaLocation":610},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":738,"config":739},"SCM",{"href":148,"dataGaName":740,"dataGaLocation":610},"source code management",{"text":238,"config":742},{"href":240,"dataGaName":743,"dataGaLocation":610},"continuous integration & delivery",{"text":288,"config":745},{"href":290,"dataGaName":746,"dataGaLocation":610},"value stream management",{"text":691,"config":748},{"href":749,"dataGaName":694,"dataGaLocation":610},"/ja-jp/solutions/gitops/",{"text":301,"config":751},{"href":304,"dataGaName":305,"dataGaLocation":610},{"text":307,"config":753},{"href":310,"dataGaName":311,"dataGaLocation":610},{"text":755,"config":756},"公共機関",{"href":316,"dataGaName":317,"dataGaLocation":610},{"text":758,"config":759},"教育",{"href":760,"dataGaName":761,"dataGaLocation":610},"/ja-jp/solutions/education/","education",{"text":763,"config":764},"金融サービス",{"href":765,"dataGaName":766,"dataGaLocation":610},"/ja-jp/solutions/finance/","financial services",{"title":768,"links":769},"リソース",[770,772,774,776,780,782,785,787,789,791,793,795,797,799],{"text":336,"config":771},{"href":338,"dataGaName":339,"dataGaLocation":610},{"text":341,"config":773},{"href":343,"dataGaName":344,"dataGaLocation":610},{"text":346,"config":775},{"href":348,"dataGaName":349,"dataGaLocation":610},{"text":351,"config":777},{"href":778,"dataGaName":779,"dataGaLocation":610},"https://docs.gitlab.com/ja-jp","docs",{"text":374,"config":781},{"href":376,"dataGaName":377,"dataGaLocation":610},{"text":783,"config":784},"最新リリース",{"href":434,"dataGaName":435,"dataGaLocation":610},{"text":369,"config":786},{"href":371,"dataGaName":372,"dataGaLocation":610},{"text":388,"config":788},{"href":390,"dataGaName":391,"dataGaLocation":610},{"text":396,"config":790},{"href":398,"dataGaName":399,"dataGaLocation":610},{"text":401,"config":792},{"href":403,"dataGaName":404,"dataGaLocation":610},{"text":406,"config":794},{"href":408,"dataGaName":409,"dataGaLocation":610},{"text":411,"config":796},{"href":413,"dataGaName":414,"dataGaLocation":610},{"text":416,"config":798},{"href":418,"dataGaName":419,"dataGaLocation":610},{"text":421,"config":800},{"href":423,"dataGaName":424,"dataGaLocation":610},{"title":802,"links":803},"会社情報",[804,806,808,810,812,814,818,823,825,827,829],{"text":445,"config":805},{"href":447,"dataGaName":439,"dataGaLocation":610},{"text":450,"config":807},{"href":452,"dataGaName":453,"dataGaLocation":610},{"text":458,"config":809},{"href":460,"dataGaName":461,"dataGaLocation":610},{"text":463,"config":811},{"href":465,"dataGaName":466,"dataGaLocation":610},{"text":468,"config":813},{"href":470,"dataGaName":471,"dataGaLocation":610},{"text":815,"config":816},"Sustainability",{"href":817,"dataGaName":815,"dataGaLocation":610},"/sustainability/",{"text":819,"config":820},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":821,"dataGaName":822,"dataGaLocation":610},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":473,"config":824},{"href":475,"dataGaName":476,"dataGaLocation":610},{"text":483,"config":826},{"href":485,"dataGaName":486,"dataGaLocation":610},{"text":488,"config":828},{"href":490,"dataGaName":491,"dataGaLocation":610},{"text":830,"config":831},"現代奴隷制の透明性に関する声明",{"href":832,"dataGaName":833,"dataGaLocation":610},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":835},[836,838,841],{"text":658,"config":837},{"href":660,"dataGaName":661,"dataGaLocation":610},{"text":839,"config":840},"Cookieの設定",{"dataGaName":670,"dataGaLocation":610,"id":671,"isOneTrustButton":162},{"text":663,"config":842},{"href":665,"dataGaName":666,"dataGaLocation":610},{"header":844,"blurb":845,"button":846,"secondaryButton":850},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":174,"config":847},{"href":848,"dataGaName":177,"dataGaLocation":849},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":493,"config":851},{"href":502,"dataGaName":182,"dataGaLocation":849},1786803785564]