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