[{"data":1,"prerenderedAt":796},["ShallowReactive",2],{"/en-us/topics/ci-cd/benefits-continuous-integration/":3,"navigation-en-us":141,"banner-en-us":555,"footer-en-us":570,"next-steps-en-us":781},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"_id":135,"_type":136,"title":7,"_source":137,"_file":138,"_stem":139,"_extension":140},"/en-us/topics/ci-cd/benefits-continuous-integration","ci-cd",false,"",{"title":9,"ogTitle":9,"description":10,"ogDescription":10},"What is continuous integration (CI)?","Learn about continuous integration and its benefits and see why organizations that use continuous integration have a strong competitive advantage!",[12,26,32,103,133],{"type":13,"componentName":13,"componentContent":14},"CommonBreadcrumbs",{"crumbs":15},[16,20,24],{"title":17,"config":18},"Topics",{"href":19},"/topics/",{"title":21,"config":22},"CI/CD",{"href":23},"/topics/ci-cd/",{"title":25},"Benefits continuous integration",{"type":27,"componentName":27,"componentContent":28},"TopicsHero",{"title":9,"text":29,"config":30},"Learn about continuous integration and its benefits and see why organizations that use continuous integration have a competitive advantage over those that don’t.\n",{"id":31,"twoColumns":6},"what-is-continuous-integration-(ci)?",{"type":33,"componentName":33,"componentContent":34},"CommonSideNavigationWithTree",{"anchors":35,"components":62},{"text":36,"data":37},"More on this topic",[38,42,46,50,54,58],{"text":39,"config":40},"Continuous integration (CI) explained",{"href":41},"#continuous-integration-ci-explained",{"text":43,"config":44},"What are the benefits of continuous integration for DevOps teams?",{"href":45},"#what-are-the-benefits-of-continuous-integration-for-dev-ops-teams",{"text":47,"config":48},"The business benefits of continuous integration",{"href":49},"#the-business-benefits-of-continuous-integration",{"text":51,"config":52},"How to set up continuous integration",{"href":53},"#how-to-set-up-continuous-integration",{"text":55,"config":56},"Continuous integration (CI) vs. continuous delivery (CD)",{"href":57},"#continuous-integration-ci-vs-continuous-delivery-cd",{"text":59,"config":60},"Conclusion",{"href":61},"#conclusion",[63,69,74,79,84,89,94],{"type":64,"componentName":64,"componentContent":65},"TopicsCopy",{"header":39,"text":66,"config":67},"[Continuous integration, or CI](/topics/ci-cd/){data-ga-name=\"ci\" data-ga-location=\"body\"}, is the practice of integrating all your code changes into the main branch of a shared source code repository early and often, automatically testing each change when you commit or merge them, and automatically kicking off a build. CI helps DevOps teams detect and resolve conflicts early and ensures that the codebase remains stable. CI is a key practice for Agile development teams.\n\nThe ultimate goal of CI is to deliver working code quickly and securely. Before you get started, there are two things you should keep in mind:\n\n**First, deliver code in small iterations**. Most software projects, even in small organizations, will involve a number of features that are being worked on by different team members. Even in the best case scenario, it can be difficult for team members to have visibility into what others are working on.\n\nThis gets even worse if developers work on separate feature branches in isolation, and only merge to the main branch when their work is complete — and when the time comes to merge everyone’s work, everything from code conflicts to unexpected security concerns will delay the release. But if each developer pushes their updates to the main branch a little bit at a time, the team will be well on the way to achieving CI, with fewer conflicts and more predictable releases. Software development processes such as feature flags can help teams deliver new features to users quickly and safely.\n\n**Second, set up automated testing to keep your code safe and secure**. Long ago, the “build” and “test” phases of software development existed in isolation, with code being checked for security vulnerabilities only after it was complete and ready for release. An essential part of CI is continuous testing — testing the code for vulnerabilities throughout the development process. But as you might guess, this might be difficult to achieve manually. That’s where automated testing comes in. Today’s CI tools take the code pushed by each developer and run tests, such as unit tests or integration tests, automatically.\n",{"id":68},"continuous-integration-ci-explained",{"type":64,"componentName":64,"componentContent":70},{"header":43,"text":71,"config":72},"CI makes software development easier, faster, and less risky for developers. By automating builds and tests, developers can make smaller changes and commit them with confidence. Software developers get feedback on their code sooner, increasing the overall pace of innovation.\n\nOrganizations that adopt continuous integration have [a competitive advantage](/blog/positive-outcomes-ci-cd/){data-ga-name=\"competitive advantage\" data-ga-location=\"body\"} because they can deploy faster. Organizations that have implemented CI are making revenue on the features they deploy, not waiting for manual code checks.\n\nStudies done by DevOps Research and Assessment (DORA) have shown that robust DevOps practices lead to improved [business outcomes](https://cloud.google.com/devops/state-of-devops/). All of these DORA 4 metrics can be improved by using CI:\n\n- **Lead time**: Early feedback and build/test automation help decrease the time it takes to go from code committed to code successfully running in production.\n- **Deployment frequency**: Automated tests and builds are a prerequisite to automated deploy.\n- **Time to restore service**: Automated pipelines enable fixes to be deployed to production faster, reducing mean time to resolution (MTTR).\n- **Change failure rate**: Early automated testing greatly reduces the number of defects that make their way to production.\n",{"id":73},"what-are-the-benefits-of-continuous-integration-for-dev-ops-teams",{"type":64,"componentName":64,"componentContent":75},{"header":47,"text":76,"config":77},"By eliminating manual tasks, DevOps teams can work more efficiently and with greater speed. An automated workflow also improves handoffs, which enhances overall operational efficiency. The business benefits of continuous integration allow organizations to:\n\n- **Iterate faster**: Smaller code changes allow software development teams to iterate faster and are easier to manage.\n- **Find problems easily**: Teams can find problems in code because all code is managed and tested in smaller batches.Find problems easily: Teams can find problems in code because all code is managed and tested in smaller batches.\n- **Improve transparency**: Continuous feedback through frequent testing helps developers see where bugs are.\n- **Reduce costs**: Automated testing frees up time for developers by reducing manual tasks, and better code quality means fewer errors and less downtime.\n- **Make users happy**: Fewer bugs and errors make it into production, so users have a better experience.\n\nAutomated testing reduces the chances of human error and ensures that only code that meets certain standards makes it into production. Because code is tested in smaller batches, there’s less context-switching for developers when a bug or error occurs. Pipelines can also identify where the error occurs, making it easier to not only identify problems, but fix them.\n\nA dev environment with fewer manual tasks means that engineers can spend more time on revenue-generating projects. With fewer errors, teams are more efficient and spend less time putting out fires. When processes such as unit testing are automated, engineers are happier and can focus on where they add the most value.\n",{"id":78},"the-business-benefits-of-continuous-integration",{"type":64,"componentName":64,"componentContent":80},{"header":51,"text":81,"config":82},"To set up CI for your project, here are some steps to follow:\n\nFirst, [choose a version control and CI tool](/solutions/continuous-integration/){data-ga-name=\"ci tool\" data-ga-location=\"body\"} that allows developers to push frequently and test continuously while reducing context switching.\n\nThen set up a shared central repository for your code and configure your CI tool to monitor your repository for changes and automatically build and test your code each time a change is detected.\n\nFinally, configure your CI tool to automatically deploy your code to a staging or production environment if the tests pass.\n\nOnce you’ve set up CI, your team can focus on writing code and committing changes to the shared repository. The CI tool will handle the rest, automatically building, testing, and deploying your code. This can save your team time and reduce the risk of errors in your software.\n",{"id":83},"how-to-set-up-continuous-integration",{"type":64,"componentName":64,"componentContent":85},{"header":55,"text":86,"config":87},"CI goes hand in hand with continuous delivery, or CD. Together, [continuous integration and delivery (CI/CD)](/topics/ci-cd/){data-ga-name=\"ci-cd\" data-ga-location=\"body\"} bring [automation into the DevOps lifecycle](/blog/5-teams-that-made-the-switch-to-gitlab-ci-cd/){data-ga-name=\"devops lifecycle automation\" data-ga-location=\"body\"}. Organizations that implement CI/CD make better use of their resources, are more cost efficient, and allow developers to focus on innovation.\n\nThere are a few key differences between CI and CD. For one, CI generally happens more frequently than CD. CI is also typically used to refer to the process of automating the build and testing of code changes, while CD generally refers to the process of automating the release of code changes.\n\n- **Continuous integration (CI)** is the practice of merging all developer working copies to a shared mainline several times a day.\n- **Continuous delivery (CD)** is a software development practice where code changes are automatically built, tested, and deployed to production.\n",{"id":88},"continuous-integration-ci-vs-continuous-delivery-cd",{"type":64,"componentName":64,"componentContent":90},{"header":59,"text":91,"config":92},"Continuous integration (CI) revolutionizes the software development process by integrating code changes frequently and automating testing, which leads to rapid feedback and improved software quality. Utilizing Continuous Integration tools, software teams can ensure the delivery of high-quality software by identifying and resolving issues early in the development cycle.\n\nThis enhances the overall software release process, resulting in quality code and a more efficient path to producing high-quality software. Adopting CI practices not only boosts productivity but also ensures that the software development lifecycle is streamlined and effective.\n",{"id":93},"conclusion",{"type":95,"componentName":95,"componentContent":96},"TopicsCallToAction",{"subtitle":97,"text":98,"primaryButton":99},"Continuous Integration (CI) with GitLab","Powerful automation to build and test faster at any scale",{"text":100,"config":101},"Learn More",{"href":102},"/solutions/continuous-integration/",{"type":104,"componentName":104,"componentContent":105},"CommonResourcesContainer",{"header":106,"tabs":107},"More on continuous integration",[108],{"name":109,"items":110,"config":132},"resources",[111,122],{"header":112,"type":113,"image":114,"link":117},"How Hotjar deploys 50% faster with GitLab","Case study",{"altText":112,"config":115},{"src":116},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159287/Website/Topics/resources_7.jpg",{"text":118,"config":119},"Learn more",{"href":120,"icon":121,"modal":6},"/customers/hotjar/","CaseStudy",{"header":123,"type":124,"image":125,"link":128},"The benefits of a single application CI/CD","Book",{"altText":123,"config":126},{"src":127},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158268/Website/Topics/resources_5.jpg",{"text":118,"config":129},{"href":130,"icon":131,"modal":6},"/resources/ebook-single-app-cicd/","Ebook",{"key":109},{"type":134,"componentName":134},"CommonNextSteps","content:en-us:topics:ci-cd:benefits-continuous-integration:index.yml","yaml","content","en-us/topics/ci-cd/benefits-continuous-integration/index.yml","en-us/topics/ci-cd/benefits-continuous-integration/index","yml",{"_path":142,"_dir":143,"_draft":6,"_partial":6,"_locale":7,"data":144,"_id":551,"_type":136,"title":552,"_source":137,"_file":553,"_stem":554,"_extension":140},"/shared/en-us/main-navigation","en-us",{"logo":145,"freeTrial":150,"sales":155,"login":160,"items":165,"search":492,"minimal":523,"duo":542},{"config":146},{"href":147,"dataGaName":148,"dataGaLocation":149},"/","gitlab logo","header",{"text":151,"config":152},"Get free trial",{"href":153,"dataGaName":154,"dataGaLocation":149},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":156,"config":157},"Talk to sales",{"href":158,"dataGaName":159,"dataGaLocation":149},"/sales/","sales",{"text":161,"config":162},"Sign in",{"href":163,"dataGaName":164,"dataGaLocation":149},"https://gitlab.com/users/sign_in/","sign in",[166,209,303,308,413,473],{"text":167,"config":168,"cards":170,"footer":192},"Platform",{"dataNavLevelOne":169},"platform",[171,177,185],{"title":167,"description":172,"link":173},"The most comprehensive AI-powered DevSecOps Platform",{"text":174,"config":175},"Explore our Platform",{"href":176,"dataGaName":169,"dataGaLocation":149},"/platform/",{"title":178,"description":179,"link":180},"GitLab Duo (AI)","Build software faster with AI at every stage of development",{"text":181,"config":182},"Meet GitLab Duo",{"href":183,"dataGaName":184,"dataGaLocation":149},"/gitlab-duo/","gitlab duo ai",{"title":186,"description":187,"link":188},"Why GitLab","10 reasons why Enterprises choose GitLab",{"text":118,"config":189},{"href":190,"dataGaName":191,"dataGaLocation":149},"/why-gitlab/","why gitlab",{"title":193,"items":194},"Get started with",[195,200,205],{"text":196,"config":197},"Platform Engineering",{"href":198,"dataGaName":199,"dataGaLocation":149},"/solutions/platform-engineering/","platform engineering",{"text":201,"config":202},"Developer Experience",{"href":203,"dataGaName":204,"dataGaLocation":149},"/developer-experience/","Developer experience",{"text":206,"config":207},"MLOps",{"href":208,"dataGaName":206,"dataGaLocation":149},"/topics/devops/the-role-of-ai-in-devops/",{"text":210,"left":211,"config":212,"link":214,"lists":218,"footer":285},"Product",true,{"dataNavLevelOne":213},"solutions",{"text":215,"config":216},"View all Solutions",{"href":217,"dataGaName":213,"dataGaLocation":149},"/solutions/",[219,242,264],{"title":220,"description":221,"link":222,"items":227},"Automation","CI/CD and automation to accelerate deployment",{"config":223},{"icon":224,"href":225,"dataGaName":226,"dataGaLocation":149},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[228,230,234,238],{"text":21,"config":229},{"href":102,"dataGaLocation":149,"dataGaName":21},{"text":231,"config":232},"AI-Assisted Development",{"href":183,"dataGaLocation":149,"dataGaName":233},"AI assisted development",{"text":235,"config":236},"Source Code Management",{"href":237,"dataGaLocation":149,"dataGaName":235},"/solutions/source-code-management/",{"text":239,"config":240},"Automated Software Delivery",{"href":225,"dataGaLocation":149,"dataGaName":241},"Automated software delivery",{"title":243,"description":244,"link":245,"items":250},"Security","Deliver code faster without compromising security",{"config":246},{"href":247,"dataGaName":248,"dataGaLocation":149,"icon":249},"/solutions/security-compliance/","security and compliance","ShieldCheckLight",[251,254,259],{"text":252,"config":253},"Security & Compliance",{"href":247,"dataGaLocation":149,"dataGaName":252},{"text":255,"config":256},"Software Supply Chain Security",{"href":257,"dataGaLocation":149,"dataGaName":258},"/solutions/supply-chain/","Software supply chain security",{"text":260,"config":261},"Compliance & Governance",{"href":262,"dataGaLocation":149,"dataGaName":263},"/solutions/continuous-software-compliance/","Compliance and governance",{"title":265,"link":266,"items":271},"Measurement",{"config":267},{"icon":268,"href":269,"dataGaName":270,"dataGaLocation":149},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[272,276,280],{"text":273,"config":274},"Visibility & Measurement",{"href":269,"dataGaLocation":149,"dataGaName":275},"Visibility and Measurement",{"text":277,"config":278},"Value Stream Management",{"href":279,"dataGaLocation":149,"dataGaName":277},"/solutions/value-stream-management/",{"text":281,"config":282},"Analytics & Insights",{"href":283,"dataGaLocation":149,"dataGaName":284},"/solutions/analytics-and-insights/","Analytics and insights",{"title":286,"items":287},"GitLab for",[288,293,298],{"text":289,"config":290},"Enterprise",{"href":291,"dataGaLocation":149,"dataGaName":292},"/enterprise/","enterprise",{"text":294,"config":295},"Small Business",{"href":296,"dataGaLocation":149,"dataGaName":297},"/small-business/","small business",{"text":299,"config":300},"Public Sector",{"href":301,"dataGaLocation":149,"dataGaName":302},"/solutions/public-sector/","public sector",{"text":304,"config":305},"Pricing",{"href":306,"dataGaName":307,"dataGaLocation":149,"dataNavLevelOne":307},"/pricing/","pricing",{"text":309,"config":310,"link":311,"lists":315,"feature":400},"Resources",{"dataNavLevelOne":109},{"text":312,"config":313},"View all resources",{"href":314,"dataGaName":109,"dataGaLocation":149},"/resources/",[316,349,372],{"title":317,"items":318},"Getting started",[319,324,329,334,339,344],{"text":320,"config":321},"Install",{"href":322,"dataGaName":323,"dataGaLocation":149},"/install/","install",{"text":325,"config":326},"Quick start guides",{"href":327,"dataGaName":328,"dataGaLocation":149},"/get-started/","quick setup checklists",{"text":330,"config":331},"Learn",{"href":332,"dataGaLocation":149,"dataGaName":333},"https://university.gitlab.com/","learn",{"text":335,"config":336},"Product documentation",{"href":337,"dataGaName":338,"dataGaLocation":149},"https://docs.gitlab.com/","product documentation",{"text":340,"config":341},"Best practice videos",{"href":342,"dataGaName":343,"dataGaLocation":149},"/getting-started-videos/","best practice videos",{"text":345,"config":346},"Integrations",{"href":347,"dataGaName":348,"dataGaLocation":149},"/integrations/","integrations",{"title":350,"items":351},"Discover",[352,357,362,367],{"text":353,"config":354},"Customer success stories",{"href":355,"dataGaName":356,"dataGaLocation":149},"/customers/","customer success stories",{"text":358,"config":359},"Blog",{"href":360,"dataGaName":361,"dataGaLocation":149},"/blog/","blog",{"text":363,"config":364},"Remote",{"href":365,"dataGaName":366,"dataGaLocation":149},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":368,"config":369},"TeamOps",{"href":370,"dataGaName":371,"dataGaLocation":149},"/teamops/","teamops",{"title":373,"items":374},"Connect",[375,380,385,390,395],{"text":376,"config":377},"GitLab Services",{"href":378,"dataGaName":379,"dataGaLocation":149},"/services/","services",{"text":381,"config":382},"Community",{"href":383,"dataGaName":384,"dataGaLocation":149},"/community/","community",{"text":386,"config":387},"Forum",{"href":388,"dataGaName":389,"dataGaLocation":149},"https://forum.gitlab.com/","forum",{"text":391,"config":392},"Events",{"href":393,"dataGaName":394,"dataGaLocation":149},"/events/","events",{"text":396,"config":397},"Partners",{"href":398,"dataGaName":399,"dataGaLocation":149},"/partners/","partners",{"backgroundColor":401,"textColor":402,"text":403,"image":404,"link":408},"#2f2a6b","#fff","Insights for the future of software development",{"altText":405,"config":406},"the source promo card",{"src":407},"/images/navigation/the-source-promo-card.svg",{"text":409,"config":410},"Read the latest",{"href":411,"dataGaName":412,"dataGaLocation":149},"/the-source/","the source",{"text":414,"config":415,"lists":417},"Company",{"dataNavLevelOne":416},"company",[418],{"items":419},[420,425,431,433,438,443,448,453,458,463,468],{"text":421,"config":422},"About",{"href":423,"dataGaName":424,"dataGaLocation":149},"/company/","about",{"text":426,"config":427,"footerGa":430},"Jobs",{"href":428,"dataGaName":429,"dataGaLocation":149},"/jobs/","jobs",{"dataGaName":429},{"text":391,"config":432},{"href":393,"dataGaName":394,"dataGaLocation":149},{"text":434,"config":435},"Leadership",{"href":436,"dataGaName":437,"dataGaLocation":149},"/company/team/e-group/","leadership",{"text":439,"config":440},"Team",{"href":441,"dataGaName":442,"dataGaLocation":149},"/company/team/","team",{"text":444,"config":445},"Handbook",{"href":446,"dataGaName":447,"dataGaLocation":149},"https://handbook.gitlab.com/","handbook",{"text":449,"config":450},"Investor relations",{"href":451,"dataGaName":452,"dataGaLocation":149},"https://ir.gitlab.com/","investor relations",{"text":454,"config":455},"Trust Center",{"href":456,"dataGaName":457,"dataGaLocation":149},"/security/","trust center",{"text":459,"config":460},"AI Transparency Center",{"href":461,"dataGaName":462,"dataGaLocation":149},"/ai-transparency-center/","ai transparency center",{"text":464,"config":465},"Newsletter",{"href":466,"dataGaName":467,"dataGaLocation":149},"/company/contact/","newsletter",{"text":469,"config":470},"Press",{"href":471,"dataGaName":472,"dataGaLocation":149},"/press/","press",{"text":474,"config":475,"lists":476},"Contact us",{"dataNavLevelOne":416},[477],{"items":478},[479,482,487],{"text":156,"config":480},{"href":158,"dataGaName":481,"dataGaLocation":149},"talk to sales",{"text":483,"config":484},"Get help",{"href":485,"dataGaName":486,"dataGaLocation":149},"/support/","get help",{"text":488,"config":489},"Customer portal",{"href":490,"dataGaName":491,"dataGaLocation":149},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":493,"login":494,"suggestions":501},"Close",{"text":495,"link":496},"To search repositories and projects, login to",{"text":497,"config":498},"gitlab.com",{"href":163,"dataGaName":499,"dataGaLocation":500},"search login","search",{"text":502,"default":503},"Suggestions",[504,506,510,512,516,520],{"text":178,"config":505},{"href":183,"dataGaName":178,"dataGaLocation":500},{"text":507,"config":508},"Code Suggestions (AI)",{"href":509,"dataGaName":507,"dataGaLocation":500},"/solutions/code-suggestions/",{"text":21,"config":511},{"href":102,"dataGaName":21,"dataGaLocation":500},{"text":513,"config":514},"GitLab on AWS",{"href":515,"dataGaName":513,"dataGaLocation":500},"/partners/technology-partners/aws/",{"text":517,"config":518},"GitLab on Google Cloud",{"href":519,"dataGaName":517,"dataGaLocation":500},"/partners/technology-partners/google-cloud-platform/",{"text":521,"config":522},"Why GitLab?",{"href":190,"dataGaName":521,"dataGaLocation":500},{"freeTrial":524,"mobileIcon":529,"desktopIcon":534,"secondaryButton":537},{"text":525,"config":526},"Start free trial",{"href":527,"dataGaName":154,"dataGaLocation":528},"https://gitlab.com/-/trials/new/","nav",{"altText":530,"config":531},"Gitlab Icon",{"src":532,"dataGaName":533,"dataGaLocation":528},"/images/brand/gitlab-logo-tanuki.svg","gitlab icon",{"altText":530,"config":535},{"src":536,"dataGaName":533,"dataGaLocation":528},"/images/brand/gitlab-logo-type.svg",{"text":538,"config":539},"Get Started",{"href":540,"dataGaName":541,"dataGaLocation":528},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/compare/gitlab-vs-github/","get started",{"freeTrial":543,"mobileIcon":547,"desktopIcon":549},{"text":544,"config":545},"Learn more about GitLab Duo",{"href":183,"dataGaName":546,"dataGaLocation":528},"gitlab duo",{"altText":530,"config":548},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":550},{"src":536,"dataGaName":533,"dataGaLocation":528},"content:shared:en-us:main-navigation.yml","Main Navigation","shared/en-us/main-navigation.yml","shared/en-us/main-navigation",{"_path":556,"_dir":143,"_draft":6,"_partial":6,"_locale":7,"title":557,"button":558,"image":562,"config":565,"_id":567,"_type":136,"_source":137,"_file":568,"_stem":569,"_extension":140},"/shared/en-us/banner","is now in public beta!",{"text":118,"config":559},{"href":560,"dataGaName":561,"dataGaLocation":149},"/gitlab-duo/agent-platform/","duo banner",{"config":563},{"src":564},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753720689/somrf9zaunk0xlt7ne4x.svg",{"layout":566},"release","content:shared:en-us:banner.yml","shared/en-us/banner.yml","shared/en-us/banner",{"_path":571,"_dir":143,"_draft":6,"_partial":6,"_locale":7,"data":572,"_id":777,"_type":136,"title":778,"_source":137,"_file":779,"_stem":780,"_extension":140},"/shared/en-us/main-footer",{"text":573,"source":574,"edit":580,"contribute":585,"config":590,"items":595,"minimal":769},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":575,"config":576},"View page source",{"href":577,"dataGaName":578,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":581,"config":582},"Edit this page",{"href":583,"dataGaName":584,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":586,"config":587},"Please contribute",{"href":588,"dataGaName":589,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":591,"facebook":592,"youtube":593,"linkedin":594},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[596,619,676,705,739],{"title":167,"links":597,"subMenu":602},[598],{"text":599,"config":600},"DevSecOps platform",{"href":176,"dataGaName":601,"dataGaLocation":579},"devsecops platform",[603],{"title":304,"links":604},[605,609,614],{"text":606,"config":607},"View plans",{"href":306,"dataGaName":608,"dataGaLocation":579},"view plans",{"text":610,"config":611},"Why Premium?",{"href":612,"dataGaName":613,"dataGaLocation":579},"/pricing/premium/","why premium",{"text":615,"config":616},"Why Ultimate?",{"href":617,"dataGaName":618,"dataGaLocation":579},"/pricing/ultimate/","why ultimate",{"title":620,"links":621},"Solutions",[622,627,630,632,637,642,646,649,653,658,660,663,666,671],{"text":623,"config":624},"Digital transformation",{"href":625,"dataGaName":626,"dataGaLocation":579},"/topics/digital-transformation/","digital transformation",{"text":252,"config":628},{"href":247,"dataGaName":629,"dataGaLocation":579},"security & compliance",{"text":241,"config":631},{"href":225,"dataGaName":226,"dataGaLocation":579},{"text":633,"config":634},"Agile development",{"href":635,"dataGaName":636,"dataGaLocation":579},"/solutions/agile-delivery/","agile delivery",{"text":638,"config":639},"Cloud transformation",{"href":640,"dataGaName":641,"dataGaLocation":579},"/topics/cloud-native/","cloud transformation",{"text":643,"config":644},"SCM",{"href":237,"dataGaName":645,"dataGaLocation":579},"source code management",{"text":21,"config":647},{"href":102,"dataGaName":648,"dataGaLocation":579},"continuous integration & delivery",{"text":650,"config":651},"Value stream management",{"href":279,"dataGaName":652,"dataGaLocation":579},"value stream management",{"text":654,"config":655},"GitOps",{"href":656,"dataGaName":657,"dataGaLocation":579},"/solutions/gitops/","gitops",{"text":289,"config":659},{"href":291,"dataGaName":292,"dataGaLocation":579},{"text":661,"config":662},"Small business",{"href":296,"dataGaName":297,"dataGaLocation":579},{"text":664,"config":665},"Public sector",{"href":301,"dataGaName":302,"dataGaLocation":579},{"text":667,"config":668},"Education",{"href":669,"dataGaName":670,"dataGaLocation":579},"/solutions/education/","education",{"text":672,"config":673},"Financial services",{"href":674,"dataGaName":675,"dataGaLocation":579},"/solutions/finance/","financial services",{"title":309,"links":677},[678,680,682,684,687,689,691,693,695,697,699,701,703],{"text":320,"config":679},{"href":322,"dataGaName":323,"dataGaLocation":579},{"text":325,"config":681},{"href":327,"dataGaName":328,"dataGaLocation":579},{"text":330,"config":683},{"href":332,"dataGaName":333,"dataGaLocation":579},{"text":335,"config":685},{"href":337,"dataGaName":686,"dataGaLocation":579},"docs",{"text":358,"config":688},{"href":360,"dataGaName":361,"dataGaLocation":579},{"text":353,"config":690},{"href":355,"dataGaName":356,"dataGaLocation":579},{"text":363,"config":692},{"href":365,"dataGaName":366,"dataGaLocation":579},{"text":376,"config":694},{"href":378,"dataGaName":379,"dataGaLocation":579},{"text":368,"config":696},{"href":370,"dataGaName":371,"dataGaLocation":579},{"text":381,"config":698},{"href":383,"dataGaName":384,"dataGaLocation":579},{"text":386,"config":700},{"href":388,"dataGaName":389,"dataGaLocation":579},{"text":391,"config":702},{"href":393,"dataGaName":394,"dataGaLocation":579},{"text":396,"config":704},{"href":398,"dataGaName":399,"dataGaLocation":579},{"title":414,"links":706},[707,709,711,713,715,717,719,723,728,730,732,734],{"text":421,"config":708},{"href":423,"dataGaName":416,"dataGaLocation":579},{"text":426,"config":710},{"href":428,"dataGaName":429,"dataGaLocation":579},{"text":434,"config":712},{"href":436,"dataGaName":437,"dataGaLocation":579},{"text":439,"config":714},{"href":441,"dataGaName":442,"dataGaLocation":579},{"text":444,"config":716},{"href":446,"dataGaName":447,"dataGaLocation":579},{"text":449,"config":718},{"href":451,"dataGaName":452,"dataGaLocation":579},{"text":720,"config":721},"Sustainability",{"href":722,"dataGaName":720,"dataGaLocation":579},"/sustainability/",{"text":724,"config":725},"Diversity, inclusion and belonging (DIB)",{"href":726,"dataGaName":727,"dataGaLocation":579},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":454,"config":729},{"href":456,"dataGaName":457,"dataGaLocation":579},{"text":464,"config":731},{"href":466,"dataGaName":467,"dataGaLocation":579},{"text":469,"config":733},{"href":471,"dataGaName":472,"dataGaLocation":579},{"text":735,"config":736},"Modern Slavery Transparency Statement",{"href":737,"dataGaName":738,"dataGaLocation":579},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":740,"links":741},"Contact Us",[742,745,747,749,754,759,764],{"text":743,"config":744},"Contact an expert",{"href":158,"dataGaName":159,"dataGaLocation":579},{"text":483,"config":746},{"href":485,"dataGaName":486,"dataGaLocation":579},{"text":488,"config":748},{"href":490,"dataGaName":491,"dataGaLocation":579},{"text":750,"config":751},"Status",{"href":752,"dataGaName":753,"dataGaLocation":579},"https://status.gitlab.com/","status",{"text":755,"config":756},"Terms of use",{"href":757,"dataGaName":758,"dataGaLocation":579},"/terms/","terms of use",{"text":760,"config":761},"Privacy statement",{"href":762,"dataGaName":763,"dataGaLocation":579},"/privacy/","privacy statement",{"text":765,"config":766},"Cookie preferences",{"dataGaName":767,"dataGaLocation":579,"id":768,"isOneTrustButton":211},"cookie preferences","ot-sdk-btn",{"items":770},[771,773,775],{"text":755,"config":772},{"href":757,"dataGaName":758,"dataGaLocation":579},{"text":760,"config":774},{"href":762,"dataGaName":763,"dataGaLocation":579},{"text":765,"config":776},{"dataGaName":767,"dataGaLocation":579,"id":768,"isOneTrustButton":211},"content:shared:en-us:main-footer.yml","Main Footer","shared/en-us/main-footer.yml","shared/en-us/main-footer",{"_path":782,"_dir":143,"_draft":6,"_partial":6,"_locale":7,"header":783,"eyebrow":784,"blurb":785,"button":786,"secondaryButton":790,"_id":792,"_type":136,"title":793,"_source":137,"_file":794,"_stem":795,"_extension":140},"/shared/en-us/next-steps","Start shipping better software faster","50%+ of the Fortune 100 trust GitLab","See what your team can do with the intelligent\n\n\nDevSecOps platform.\n",{"text":151,"config":787},{"href":788,"dataGaName":154,"dataGaLocation":789},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":156,"config":791},{"href":158,"dataGaName":159,"dataGaLocation":789},"content:shared:en-us:next-steps.yml","Next Steps","shared/en-us/next-steps.yml","shared/en-us/next-steps",1753981669315]