[{"data":1,"prerenderedAt":839},["ShallowReactive",2],{"/ja-jp/topics/version-control/what-are-gitlab-flow-best-practices":3,"navigation-ja-jp":167,"banner-ja-jp":585,"footer-ja-jp":595,"next-steps-ja-jp":830},{"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/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","vr2BV4NDiYSEoOz3Iha8YmsAhSWJ6I0cWa-OKcoVKlQ",{"logo":168,"freeTrial":173,"sales":178,"login":183,"items":188,"search":505,"minimal":538,"duo":555,"switchNav":564,"pricingDeployment":575},{"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/","sales",{"text":184,"config":185},"サインイン",{"href":186,"dataGaName":187,"dataGaLocation":172},"https://gitlab.com/users/sign_in/","sign in",[189,217,318,323,425,486],{"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":411},{"text":328,"config":329},"すべてのリソースを表示",{"href":330,"dataGaName":155,"dataGaLocation":172},"/ja-jp/resources/",[332,365,383],{"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],{"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},"リモート",{"href":381,"dataGaName":382,"dataGaLocation":172},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":384,"items":385},"つなげる",[386,391,396,401,406],{"text":387,"config":388},"GitLabサービス",{"href":389,"dataGaName":390,"dataGaLocation":172},"/ja-jp/services/","services",{"text":392,"config":393},"コミュニティ",{"href":394,"dataGaName":395,"dataGaLocation":172},"/community/","community",{"text":397,"config":398},"フォーラム",{"href":399,"dataGaName":400,"dataGaLocation":172},"https://forum.gitlab.com/","forum",{"text":402,"config":403},"イベント",{"href":404,"dataGaName":405,"dataGaLocation":172},"/events/","events",{"text":407,"config":408},"パートナー",{"href":409,"dataGaName":410,"dataGaLocation":172},"/ja-jp/partners/","partners",{"config":412,"text":415,"image":416,"link":420},{"background":413,"textColor":414},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":417,"config":418},"ソースプロモカード",{"src":419},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":421,"config":422},"最新情報を読む",{"href":423,"dataGaName":424,"dataGaLocation":172},"/ja-jp/the-source/","the source",{"text":426,"config":427,"menu":429},"会社情報",{"dataNavLevelOne":428},"company",{"type":222,"columns":430},[431],{"items":432},[433,438,444,446,451,456,461,466,471,476,481],{"text":434,"config":435},"GitLabについて",{"href":436,"dataGaName":437,"dataGaLocation":172},"/ja-jp/company/","about",{"text":439,"config":440,"footerGa":443},"採用情報",{"href":441,"dataGaName":442,"dataGaLocation":172},"/jobs/","jobs",{"dataGaName":442},{"text":402,"config":445},{"href":404,"dataGaName":405,"dataGaLocation":172},{"text":447,"config":448},"経営陣",{"href":449,"dataGaName":450,"dataGaLocation":172},"/company/team/e-group/","leadership",{"text":452,"config":453},"チーム",{"href":454,"dataGaName":455,"dataGaLocation":172},"/company/team/","team",{"text":457,"config":458},"ハンドブック",{"href":459,"dataGaName":460,"dataGaLocation":172},"https://handbook.gitlab.com/","handbook",{"text":462,"config":463},"投資家向け情報",{"href":464,"dataGaName":465,"dataGaLocation":172},"https://ir.gitlab.com/","investor relations",{"text":467,"config":468},"トラストセンター",{"href":469,"dataGaName":470,"dataGaLocation":172},"/ja-jp/security/","trust center",{"text":472,"config":473},"AI Transparency Center",{"href":474,"dataGaName":475,"dataGaLocation":172},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":477,"config":478},"ニュースレター",{"href":479,"dataGaName":480,"dataGaLocation":172},"/company/contact/#contact-forms","newsletter",{"text":482,"config":483},"プレス",{"href":484,"dataGaName":485,"dataGaLocation":172},"/press/","press",{"text":179,"config":487,"menu":488},{"dataNavLevelOne":428},{"type":222,"columns":489},[490],{"items":491},[492,495,500],{"text":179,"config":493},{"href":181,"dataGaName":494,"dataGaLocation":172},"talk to sales",{"text":496,"config":497},"サポートを受ける",{"href":498,"dataGaName":499,"dataGaLocation":172},"https://support.gitlab.com","support portal",{"text":501,"config":502},"カスタマーポータル",{"href":503,"dataGaName":504,"dataGaLocation":172},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":506,"login":507,"suggestions":514},"閉じる",{"text":508,"link":509},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":510,"config":511},"GitLab.com",{"href":186,"dataGaName":512,"dataGaLocation":513},"search login","search",{"text":515,"default":516},"提案",[517,519,524,526,530,534],{"text":203,"config":518},{"href":208,"dataGaName":203,"dataGaLocation":513},{"text":520,"config":521},"コード提案（AI）",{"href":522,"dataGaName":523,"dataGaLocation":513},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":238,"config":525},{"href":240,"dataGaName":238,"dataGaLocation":513},{"text":527,"config":528},"GitLab on AWS",{"href":529,"dataGaName":527,"dataGaLocation":513},"/ja-jp/partners/technology-partners/aws/",{"text":531,"config":532},"GitLab on Google Cloud",{"href":533,"dataGaName":531,"dataGaLocation":513},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":535,"config":536},"GitLabを選ぶ理由",{"href":215,"dataGaName":537,"dataGaLocation":513},"Why GitLab?",{"freeTrial":539,"mobileIcon":543,"desktopIcon":548,"secondaryButton":551},{"text":174,"config":540},{"href":541,"dataGaName":177,"dataGaLocation":542},"https://gitlab.com/-/trials/new/","nav",{"altText":544,"config":545},"GitLabアイコン",{"src":546,"dataGaName":547,"dataGaLocation":542},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":544,"config":549},{"src":550,"dataGaName":547,"dataGaLocation":542},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":333,"config":552},{"href":553,"dataGaName":554,"dataGaLocation":542},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":556,"mobileIcon":560,"desktopIcon":562},{"text":557,"config":558},"GitLab Duoの詳細について",{"href":208,"dataGaName":559,"dataGaLocation":542},"gitlab duo",{"altText":544,"config":561},{"src":546,"dataGaName":547,"dataGaLocation":542},{"altText":544,"config":563},{"src":550,"dataGaName":547,"dataGaLocation":542},{"button":565,"mobileIcon":570,"desktopIcon":572},{"text":566,"config":567},"/switch",{"href":568,"dataGaName":569,"dataGaLocation":542},"#contact","switch",{"altText":544,"config":571},{"src":546,"dataGaName":547,"dataGaLocation":542},{"altText":544,"config":573},{"src":574,"dataGaName":547,"dataGaLocation":542},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":576,"mobileIcon":581,"desktopIcon":583},{"text":577,"config":578},"価格ページに戻る",{"href":321,"dataGaName":579,"dataGaLocation":542,"icon":580},"back to pricing","GoBack",{"altText":544,"config":582},{"src":546,"dataGaName":547,"dataGaLocation":542},{"altText":544,"config":584},{"src":550,"dataGaName":547,"dataGaLocation":542},{"title":586,"button":587,"config":592},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":588,"config":589},"6月10日のGitLab Transcendに申し込む",{"href":590,"dataGaName":591,"dataGaLocation":172},"/ja-jp/releases/whats-new/#sign-up","transcend event",{"layout":593,"icon":594,"disabled":29},"release","AiStar",{"data":596},{"text":597,"source":598,"edit":604,"contribute":609,"config":614,"items":619,"minimal":821},"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,665,717,760,787],{"title":319,"links":621,"subMenu":636},[622,626,631],{"text":623,"config":624},"プランの表示",{"href":321,"dataGaName":625,"dataGaLocation":603},"view plans",{"text":627,"config":628},"Premiumを選ぶ理由",{"href":629,"dataGaName":630,"dataGaLocation":603},"/ja-jp/pricing/premium/","why premium",{"text":632,"config":633},"Ultimateを選ぶ理由",{"href":634,"dataGaName":635,"dataGaLocation":603},"/ja-jp/pricing/ultimate/","why ultimate",[637],{"title":179,"links":638},[639,641,643,645,650,655,660],{"text":179,"config":640},{"href":181,"dataGaName":182,"dataGaLocation":603},{"text":496,"config":642},{"href":498,"dataGaName":499,"dataGaLocation":603},{"text":501,"config":644},{"href":503,"dataGaName":504,"dataGaLocation":603},{"text":646,"config":647},"ステータス",{"href":648,"dataGaName":649,"dataGaLocation":603},"https://status.gitlab.com/","status",{"text":651,"config":652},"利用規約",{"href":653,"dataGaName":654,"dataGaLocation":603},"/terms/","terms of use",{"text":656,"config":657},"プライバシーに関する声明",{"href":658,"dataGaName":659,"dataGaLocation":603},"/ja-jp/privacy/","privacy statement",{"text":661,"config":662},"Cookie 優先設定",{"dataGaName":663,"dataGaLocation":603,"id":664,"isOneTrustButton":162},"cookie preferences","ot-sdk-btn",{"title":218,"links":666,"subMenu":675},[667,671],{"text":668,"config":669},"DevSecOpsプラットフォーム",{"href":201,"dataGaName":670,"dataGaLocation":603},"devsecops platform",{"text":672,"config":673},"AI支援開発",{"href":208,"dataGaName":674,"dataGaLocation":603},"ai-assisted development",[676],{"title":677,"links":678},"トピック",[679,683,688,693,697,702,707,712],{"text":238,"config":680},{"href":681,"dataGaName":682,"dataGaLocation":603},"/ja-jp/topics/ci-cd/","cicd",{"text":684,"config":685},"GitOps",{"href":686,"dataGaName":687,"dataGaLocation":603},"/ja-jp/topics/gitops/","gitops",{"text":689,"config":690},"DevOps",{"href":691,"dataGaName":692,"dataGaLocation":603},"/ja-jp/topics/devops/","devops",{"text":694,"config":695},"バージョン管理",{"href":19,"dataGaName":696,"dataGaLocation":603},"version control",{"text":698,"config":699},"DevSecOps",{"href":700,"dataGaName":701,"dataGaLocation":603},"/ja-jp/topics/devsecops/","devsecops",{"text":703,"config":704},"クラウドネイティブ",{"href":705,"dataGaName":706,"dataGaLocation":603},"/ja-jp/topics/cloud-native/","cloud native",{"text":708,"config":709},"コーディングのためのAI",{"href":710,"dataGaName":711,"dataGaLocation":603},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":713,"config":714},"エージェント型AI",{"href":715,"dataGaName":716,"dataGaLocation":603},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":718,"links":719},"ソリューション",[720,723,725,730,734,737,740,743,745,747,750,755],{"text":262,"config":721},{"href":257,"dataGaName":722,"dataGaLocation":603},"Application Security Testing",{"text":249,"config":724},{"href":234,"dataGaName":235,"dataGaLocation":603},{"text":726,"config":727},"アジャイル開発",{"href":728,"dataGaName":729,"dataGaLocation":603},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":731,"config":732},"SCM",{"href":148,"dataGaName":733,"dataGaLocation":603},"source code management",{"text":238,"config":735},{"href":240,"dataGaName":736,"dataGaLocation":603},"continuous integration & delivery",{"text":288,"config":738},{"href":290,"dataGaName":739,"dataGaLocation":603},"value stream management",{"text":684,"config":741},{"href":742,"dataGaName":687,"dataGaLocation":603},"/ja-jp/solutions/gitops/",{"text":301,"config":744},{"href":304,"dataGaName":305,"dataGaLocation":603},{"text":307,"config":746},{"href":310,"dataGaName":311,"dataGaLocation":603},{"text":748,"config":749},"公共機関",{"href":316,"dataGaName":317,"dataGaLocation":603},{"text":751,"config":752},"教育",{"href":753,"dataGaName":754,"dataGaLocation":603},"/ja-jp/solutions/education/","education",{"text":756,"config":757},"金融サービス",{"href":758,"dataGaName":759,"dataGaLocation":603},"/ja-jp/solutions/finance/","financial services",{"title":324,"links":761},[762,764,766,768,771,773,775,777,779,781,783,785],{"text":336,"config":763},{"href":338,"dataGaName":339,"dataGaLocation":603},{"text":341,"config":765},{"href":343,"dataGaName":344,"dataGaLocation":603},{"text":346,"config":767},{"href":348,"dataGaName":349,"dataGaLocation":603},{"text":351,"config":769},{"href":353,"dataGaName":770,"dataGaLocation":603},"docs",{"text":374,"config":772},{"href":376,"dataGaName":377,"dataGaLocation":603},{"text":369,"config":774},{"href":371,"dataGaName":372,"dataGaLocation":603},{"text":379,"config":776},{"href":381,"dataGaName":382,"dataGaLocation":603},{"text":387,"config":778},{"href":389,"dataGaName":390,"dataGaLocation":603},{"text":392,"config":780},{"href":394,"dataGaName":395,"dataGaLocation":603},{"text":397,"config":782},{"href":399,"dataGaName":400,"dataGaLocation":603},{"text":402,"config":784},{"href":404,"dataGaName":405,"dataGaLocation":603},{"text":407,"config":786},{"href":409,"dataGaName":410,"dataGaLocation":603},{"title":426,"links":788},[789,791,793,795,797,799,801,805,810,812,814,816],{"text":434,"config":790},{"href":436,"dataGaName":428,"dataGaLocation":603},{"text":439,"config":792},{"href":441,"dataGaName":442,"dataGaLocation":603},{"text":447,"config":794},{"href":449,"dataGaName":450,"dataGaLocation":603},{"text":452,"config":796},{"href":454,"dataGaName":455,"dataGaLocation":603},{"text":457,"config":798},{"href":459,"dataGaName":460,"dataGaLocation":603},{"text":462,"config":800},{"href":464,"dataGaName":465,"dataGaLocation":603},{"text":802,"config":803},"Sustainability",{"href":804,"dataGaName":802,"dataGaLocation":603},"/sustainability/",{"text":806,"config":807},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":808,"dataGaName":809,"dataGaLocation":603},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":467,"config":811},{"href":469,"dataGaName":470,"dataGaLocation":603},{"text":477,"config":813},{"href":479,"dataGaName":480,"dataGaLocation":603},{"text":482,"config":815},{"href":484,"dataGaName":485,"dataGaLocation":603},{"text":817,"config":818},"現代奴隷制の透明性に関する声明",{"href":819,"dataGaName":820,"dataGaLocation":603},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":822},[823,825,828],{"text":651,"config":824},{"href":653,"dataGaName":654,"dataGaLocation":603},{"text":826,"config":827},"Cookieの設定",{"dataGaName":663,"dataGaLocation":603,"id":664,"isOneTrustButton":162},{"text":656,"config":829},{"href":658,"dataGaName":659,"dataGaLocation":603},{"header":831,"blurb":832,"button":833,"secondaryButton":837},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":174,"config":834},{"href":835,"dataGaName":177,"dataGaLocation":836},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":179,"config":838},{"href":181,"dataGaName":182,"dataGaLocation":836},1777934851438]