[{"data":1,"prerenderedAt":789},["ShallowReactive",2],{"/ja-jp/topics/version-control/what-are-gitlab-flow-best-practices":3,"navigation-ja-jp":167,"banner-ja-jp":564,"footer-ja-jp":574,"next-steps-ja-jp":780},{"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":554},{"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&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/compare/gitlab-vs-github/","get started",{"freeTrial":545,"mobileIcon":550,"desktopIcon":552},{"text":546,"config":547},"GitLab Duoの詳細について",{"href":548,"dataGaName":549,"dataGaLocation":531},"/ja-jp/gitlab-duo/","gitlab duo",{"altText":533,"config":551},{"src":535,"dataGaName":536,"dataGaLocation":531},{"altText":533,"config":553},{"src":539,"dataGaName":536,"dataGaLocation":531},{"freeTrial":555,"mobileIcon":560,"desktopIcon":562},{"text":556,"config":557},"料金ページに戻る",{"href":314,"dataGaName":558,"dataGaLocation":531,"icon":559},"back to pricing","GoBack",{"altText":533,"config":561},{"src":535,"dataGaName":536,"dataGaLocation":531},{"altText":533,"config":563},{"src":539,"dataGaName":536,"dataGaLocation":531},{"title":565,"button":566,"config":571},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":567,"config":568},"GitLab Transcendを今すぐ視聴",{"href":569,"dataGaName":570,"dataGaLocation":173},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":572,"icon":573},"release","AiStar",{"data":575},{"text":576,"source":577,"edit":583,"contribute":588,"config":593,"items":598,"minimal":772},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":578,"config":579},"ページのソースを表示",{"href":580,"dataGaName":581,"dataGaLocation":582},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":584,"config":585},"このページを編集",{"href":586,"dataGaName":587,"dataGaLocation":582},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":589,"config":590},"ご協力をお願いします",{"href":591,"dataGaName":592,"dataGaLocation":582},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":594,"facebook":595,"youtube":596,"linkedin":597},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[599,622,676,706,741],{"title":191,"links":600,"subMenu":605},[601],{"text":602,"config":603},"DevSecOpsプラットフォーム",{"href":200,"dataGaName":604,"dataGaLocation":582},"devsecops platform",[606],{"title":312,"links":607},[608,612,617],{"text":609,"config":610},"プランの表示",{"href":314,"dataGaName":611,"dataGaLocation":582},"view plans",{"text":613,"config":614},"Premiumを選ぶ理由",{"href":615,"dataGaName":616,"dataGaLocation":582},"/ja-jp/pricing/premium/","why premium",{"text":618,"config":619},"Ultimateを選ぶ理由",{"href":620,"dataGaName":621,"dataGaLocation":582},"/ja-jp/pricing/ultimate/","why ultimate",{"title":623,"links":624},"ソリューション",[625,630,633,635,640,645,649,652,655,660,662,664,666,671],{"text":626,"config":627},"デジタルトランスフォーメーション",{"href":628,"dataGaName":629,"dataGaLocation":582},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":631,"config":632},"セキュリティとコンプライアンス",{"href":254,"dataGaName":261,"dataGaLocation":582},{"text":246,"config":634},{"href":231,"dataGaName":232,"dataGaLocation":582},{"text":636,"config":637},"アジャイル開発",{"href":638,"dataGaName":639,"dataGaLocation":582},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":641,"config":642},"クラウドトランスフォーメーション",{"href":643,"dataGaName":644,"dataGaLocation":582},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":646,"config":647},"SCM",{"href":148,"dataGaName":648,"dataGaLocation":582},"source code management",{"text":235,"config":650},{"href":237,"dataGaName":651,"dataGaLocation":582},"continuous integration & delivery",{"text":284,"config":653},{"href":286,"dataGaName":654,"dataGaLocation":582},"value stream management",{"text":656,"config":657},"GitOps",{"href":658,"dataGaName":659,"dataGaLocation":582},"/ja-jp/solutions/gitops/","gitops",{"text":297,"config":661},{"href":299,"dataGaName":300,"dataGaLocation":582},{"text":302,"config":663},{"href":304,"dataGaName":305,"dataGaLocation":582},{"text":307,"config":665},{"href":309,"dataGaName":310,"dataGaLocation":582},{"text":667,"config":668},"教育",{"href":669,"dataGaName":670,"dataGaLocation":582},"/ja-jp/solutions/education/","education",{"text":672,"config":673},"金融サービス",{"href":674,"dataGaName":675,"dataGaLocation":582},"/ja-jp/solutions/finance/","financial services",{"title":317,"links":677},[678,680,682,684,687,689,692,694,696,698,700,702,704],{"text":328,"config":679},{"href":330,"dataGaName":331,"dataGaLocation":582},{"text":333,"config":681},{"href":335,"dataGaName":336,"dataGaLocation":582},{"text":338,"config":683},{"href":340,"dataGaName":341,"dataGaLocation":582},{"text":343,"config":685},{"href":345,"dataGaName":686,"dataGaLocation":582},"docs",{"text":366,"config":688},{"href":368,"dataGaName":369},{"text":690,"config":691},"お客様の成功事例",{"href":363,"dataGaLocation":582},{"text":361,"config":693},{"href":363,"dataGaName":364,"dataGaLocation":582},{"text":371,"config":695},{"href":373,"dataGaName":374,"dataGaLocation":582},{"text":379,"config":697},{"href":381,"dataGaName":382,"dataGaLocation":582},{"text":384,"config":699},{"href":386,"dataGaName":387,"dataGaLocation":582},{"text":389,"config":701},{"href":391,"dataGaName":392,"dataGaLocation":582},{"text":394,"config":703},{"href":396,"dataGaName":397,"dataGaLocation":582},{"text":399,"config":705},{"href":401,"dataGaName":402,"dataGaLocation":582},{"title":707,"links":708},"Company",[709,711,713,715,717,719,721,725,730,732,734,736],{"text":424,"config":710},{"href":426,"dataGaName":419,"dataGaLocation":582},{"text":429,"config":712},{"href":431,"dataGaName":432,"dataGaLocation":582},{"text":437,"config":714},{"href":439,"dataGaName":440,"dataGaLocation":582},{"text":442,"config":716},{"href":444,"dataGaName":445,"dataGaLocation":582},{"text":447,"config":718},{"href":449,"dataGaName":450,"dataGaLocation":582},{"text":452,"config":720},{"href":454,"dataGaName":455,"dataGaLocation":582},{"text":722,"config":723},"Sustainability",{"href":724,"dataGaName":722,"dataGaLocation":582},"/sustainability/",{"text":726,"config":727},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":728,"dataGaName":729,"dataGaLocation":582},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":457,"config":731},{"href":459,"dataGaName":460,"dataGaLocation":582},{"text":467,"config":733},{"href":469,"dataGaName":470,"dataGaLocation":582},{"text":472,"config":735},{"href":474,"dataGaName":475,"dataGaLocation":582},{"text":737,"config":738},"現代奴隷制の透明性に関する声明",{"href":739,"dataGaName":740,"dataGaLocation":582},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":180,"links":742},[743,745,750,752,757,762,767],{"text":180,"config":744},{"href":182,"dataGaName":183,"dataGaLocation":582},{"text":746,"config":747},"サポートを受ける",{"href":748,"dataGaName":749,"dataGaLocation":582},"/support/","get help",{"text":490,"config":751},{"href":492,"dataGaName":493,"dataGaLocation":582},{"text":753,"config":754},"ステータス",{"href":755,"dataGaName":756,"dataGaLocation":582},"https://status.gitlab.com/","status",{"text":758,"config":759},"利用規約",{"href":760,"dataGaName":761,"dataGaLocation":582},"/terms/","terms of use",{"text":763,"config":764},"プライバシーに関する声明",{"href":765,"dataGaName":766,"dataGaLocation":582},"/ja-jp/privacy/","privacy statement",{"text":768,"config":769},"Cookieの設定",{"dataGaName":770,"dataGaLocation":582,"id":771,"isOneTrustButton":162},"cookie preferences","ot-sdk-btn",{"items":773},[774,776,778],{"text":758,"config":775},{"href":760,"dataGaName":761,"dataGaLocation":582},{"text":763,"config":777},{"href":765,"dataGaName":766,"dataGaLocation":582},{"text":768,"config":779},{"dataGaName":770,"dataGaLocation":582,"id":771,"isOneTrustButton":162},{"header":781,"blurb":782,"button":783,"secondaryButton":787},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":175,"config":784},{"href":785,"dataGaName":178,"dataGaLocation":786},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":180,"config":788},{"href":182,"dataGaName":183,"dataGaLocation":786},1772652121559]