[{"data":1,"prerenderedAt":912},["ShallowReactive",2],{"/en-us/topics/version-control/":3,"navigation-en-us":257,"banner-en-us":671,"footer-en-us":686,"next-steps-en-us":897},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"_id":251,"_type":252,"title":7,"_source":253,"_file":254,"_stem":255,"_extension":256},"/en-us/topics/version-control","topics",false,"",{"title":9,"ogTitle":9,"description":10,"ogDescription":10},"What is version control?","Version control software is used to track revisions, solve integration conflicts in code, and manage different artifacts involved in software projects.",[12,22,32,103,216,249],{"type":13,"componentName":13,"componentContent":14},"CommonBreadcrumbs",{"crumbs":15},[16,20],{"title":17,"config":18},"Topics",{"href":19},"/topics/",{"title":21},"Version control",{"type":23,"componentName":23,"componentContent":24},"TopicsHero",{"title":9,"text":25,"config":26,"button":28},"Version control - also known as source control or revision control - is an important software development practice for tracking and managing changes made to code and other files. It is closely related to source code management.",{"id":27,"twoColumns":6},"what-is-version-control?",{"text":29,"config":30},"Learn how to streamline development",{"href":31},"https://learn.gitlab.com/scm?utm_content=topicpage&utm_campaign=vccusecase",{"type":33,"componentName":33,"componentContent":34},"CommonSideNavigationWithTree",{"anchors":35,"components":66},{"text":36,"data":37},"More on this topic",[38,42,46,50,54,58,62],{"text":39,"config":40},"The basics of version control",{"href":41},"#the-basics-of-version-control",{"text":43,"config":44},"Why use version control?",{"href":45},"#why-use-version-control",{"text":47,"config":48},"What is a version control system?",{"href":49},"#what-is-a-version-control-system",{"text":51,"config":52},"Types of version control systems",{"href":53},"#types-of-version-control-systems",{"text":55,"config":56},"Benefits of version control",{"href":57},"#benefits-of-version-control",{"text":59,"config":60},"What are the main version control systems?",{"href":61},"#what-are-the-main-version-control-systems",{"text":63,"config":64},"How does version control streamline collaboration?",{"href":65},"#how-does-version-control-streamline-collaboration",[67,73,78,83,88,93,98],{"type":68,"componentName":68,"componentContent":69},"TopicsCopy",{"header":39,"text":70,"config":71},"With version control, every change made to the code base is tracked. This allows software developers to see the entire history of who changed what at any given time — and roll back from the current version to an earlier version if they need to. It also creates a single source of truth.\n\nVersion control (or source control or revision control) serves as a safety net to protect the source code from irreparable harm, giving the development team the freedom to experiment without fear of causing damage or creating code conflicts.\n\nIf developers code concurrently and create incompatible changes, version control identifies the problem areas so that team members can quickly revert changes to a previous version, compare changes, or identify who committed the problem code through the revision history. With a version control system (VCS), a software team can solve an issue before progressing further into a project. Through code reviews, software teams can analyze earlier versions to understand the changes made to the code over time.\n\nDepending on a team's specific needs and development process, a VCS can be local, centralized, or distributed. A local VCS stores source files within a local system, a centralized VCS stores changes in a single server, and a distributed VCS involves cloning a Git repository.\n\n[Learn five ways to enhance team collaboration with version control best practices →](/resources/ebook-version-control-best-practices/){data-ga-name=\"VC best practices\"}{data-ga-location=\"body\"}\n\n> **Version control** enables teams to collaborate and streamline development to resolve conflicts and create a centralized location for code.\n",{"id":72},"the-basics-of-version-control",{"type":68,"componentName":68,"componentContent":74},{"header":43,"text":75,"config":76},"As organizations accelerate delivery of their software solutions through DevOps, controlling and managing different versions of application artifacts — from code to configuration and from design to deployment — becomes increasingly difficult.\n\nVersion control software facilitates coordination, sharing, and collaboration across the entire software development team. It enables teams to work in distributed and asynchronous environments, manage changes and versions of code and artifacts, and resolve merge conflicts and related anomalies.\n\n[Read how Git Partial Clone lets you fetch only the large files you need →](/blog/partial-clone-for-massive-repositories/){data-ga-name=\"Partial clone\"}{data-ga-location=\"body\"}\n\n![version-control](https://res.cloudinary.com/about-gitlab-com/image/upload/v1751041310/ybp7jvzr7qlp0wvuacgw.svg)",{"id":77},"why-use-version-control",{"type":68,"componentName":68,"componentContent":79},{"header":47,"text":80,"config":81},"A version control system (VCS) tracks every alteration to a file or set of files, enabling developers to journey back to earlier versions and collaborate seamlessly. Centralized version control systems (CVCS) streamline this process by housing all file versions on a single server. Developers borrow a file to tweak, then return it with updates, all neatly stored and cataloged by the server. This method shines in its simplicity, offering a straightforward path for managing changes.\n\nYet, as teams grow and projects become more intricate, the distributed version control systems (DVCS) such as Git step into the spotlight. DVCS doesn't just centralize files; it democratizes them. Every developer holds the entire project history locally, empowering offline work and facilitating a tapestry of branching and merging strategies. This flexibility is a boon for dynamic teams aiming to weave together multiple project threads without tangling them.\n\nWhether centralized or distributed, version control is the cornerstone of efficient, cohesive software development. It safeguards progress, clarifies the past, and smooths the path forward, ensuring that every team member can contribute their best work towards crafting stellar software.\n",{"id":82},"what-is-a-version-control-system",{"type":68,"componentName":68,"componentContent":84},{"header":51,"text":85,"config":86},"The two most popular types of version or revision control systems are centralized and distributed. Centralized version control systems store all the files in a central repository, while distributed version control systems store files across multiple repositories. Other less common types include lock-based and optimistic.\n\n### Distributed\n\nA distributed version control system (DVCS) allows users to access a repository from multiple locations. DVCSs are often used by developers who need to work on projects from multiple computers or who need to collaborate with other developers remotely.\n\n### Centralized\n\nA [centralized version control system](/topics/version-control/what-is-centralized-version-control-system/) (CVCS) is a type of VCS where all users are working with the same central repository. This central repository can be located on a server or on a developer's local machine. Centralized version control systems are typically used in software development projects where a team of developers needs to share code and track changes.\n\n### Lock-based\n\nA lock-based version control system uses file locking to manage concurrent access to files and resources. File locking prevents two or more users from making conflicting changes to the same file or resource.\n\n### Optimistic\n\nIn an optimistic version control system, every user has their own private workspace. When they want to share their changes with the rest of the team, they submit a request to the server. The server then looks at all the changes and determines which ones can be safely merged together.",{"id":87},"types-of-version-control-systems",{"type":68,"componentName":68,"componentContent":89},{"header":55,"text":90,"config":91},"Version control systems (VCS) stand as a pivotal practice within software development, enabling better management, tracking, and implementation of changes to code and related files. By providing a structured approach to revision control, VCS supports dynamic, collaborative environments, providing stability across development projects. The advantages of employing version control stretch from enhancing code quality to accelerating development timelines and improving project visibility. All of which makes it an indispensable tool for teams aiming for high efficiency and quality in software delivery.\n\n### Quality\n\nVersion control encourages a culture of continuous peer review and collaboration, leading to significant improvements in code quality. By facilitating detailed tracking of every change, teams can easily review, comment, and refine their work, ensuring adherence to best practices and standards. This collaborative scrutiny not only elevates the quality of the output but also aids in early bug detection and resolution.\n\n### Acceleration\n\nVersion control systems streamline development processes, enabling faster iteration and delivery of features. Efficient branching and merging capabilities allow developers to work concurrently on various aspects of a project without interference, significantly reducing the time from development to deployment. Additionally, the ability to quickly revert to previous versions minimizes downtime when addressing issues, keeping the project momentum steady.\n\n### Visibility\n\nA central repository in a version control system acts as the single source of truth, enhancing project transparency and accountability. This centralized view of the project's evolution aids in better planning, tracking, and collaboration, as every team member has access to the latest updates and historical changes. The integration with project management tools further bolsters project oversight, linking code changes directly to tasks and milestones.",{"id":92},"benefits-of-version-control",{"type":68,"componentName":68,"componentContent":94},{"header":59,"text":95,"config":96},"The three most well-known version control tools (also known as revision control systems) are Git, Subversion, and Mercurial.\n\n### Git\nGit is the most popular option and has become synonymous with \"source code management.\" Git is an open source distributed system that is used for software projects of any size, making it a popular option for startups, enterprise, and everything in between.\n\n### Subversion (SVN)\nSVN is a widely adopted centralized VCS. This system keeps all of a project's files on a single codeline making it impossible to branch, so it's easy to scale for large projects. It's simple to learn and features folder security measures, so access to subfolders can be restricted.\n\n### Mercurial\nMercurial is a distributed VCS that offers simple branching and merging capabilities. The system enables rapid scaling and collaborative development, with an intuitive interface. The flexible command line interface enables users to begin using the system immediately.",{"id":97},"what-are-the-main-version-control-systems",{"type":68,"componentName":68,"componentContent":99},{"header":63,"text":100,"config":101},"Version control coordinates all changes in a software project, effectively tracking changes to source files, designs, and all digital assets required for a project and related metadata. Without it, projects can easily devolve into a tangled mess of different versions of project files, hindering the ability of any software development team to deliver value.\n\nWith a strong VCS, software teams can quickly assemble all critical project files and foster actionable communication to improve code quality. And because it provides a single source of truth, stakeholders from across a DevOps team can collaborate to build innovative solutions — from product managers and designers to developers and operations professionals.\n\n[Discover 15 best practices for large teams to innovate and collaborate using source code management →](https://page.gitlab.com/resources-ebook-scm-for-enterprise.html){data-ga-name=\"SCM for enterprise\"}{data-ga-location=\"body\"}",{"id":102},"how-does-version-control-streamline-collaboration",{"type":104,"componentName":104,"componentContent":105},"CommonResourcesContainer",{"header":106,"tabs":107},"Next steps in version control",[108,138,159,180],{"name":109,"items":110,"config":137},"Webcasts",[111,121,129],{"header":112,"type":113,"image":114,"link":117},"Learn how to collaborate without boundaries to unlock faster delivery with GitLab","Webcast",{"altText":112,"config":115},{"src":116},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159520/Website/Topics/resources_6.jpg",{"text":118,"config":119},"Learn more",{"href":120,"icon":113,"modal":6},"/webcast/collaboration-without-boundaries/",{"header":122,"type":113,"image":123,"link":126},"Watch how GitLab SCM and code review spark velocity",{"altText":122,"config":124},{"src":125},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749157556/Website/Topics/resources_1.jpg",{"text":118,"config":127},{"href":128,"icon":113,"modal":6},"https://page.gitlab.com/resources-demo-scm.html",{"header":130,"type":113,"image":131,"link":134},"Discover how code review and source code management streamline collaboration",{"altText":130,"config":132},{"src":133},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158268/Website/Topics/resources_2.jpg",{"text":118,"config":135},{"href":136,"icon":113,"modal":6}," https://page.gitlab.com/resources-demo-scm.html",{"key":109},{"name":139,"items":140,"config":158},"Articles",[141,150],{"header":142,"type":143,"image":144,"link":147},"Read how version control and collaboration builds a strong DevOps foundation","Article",{"altText":142,"config":145},{"src":146},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159287/Website/Topics/resources_7.jpg",{"text":118,"config":148},{"href":149,"icon":143,"modal":6},"/solutions/source-code-management/",{"header":151,"type":143,"image":152,"link":155},"Learn how to move to Git",{"altText":151,"config":153},{"src":154},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158613/Website/Topics/resources_9.jpg",{"text":118,"config":156},{"href":157,"icon":143,"modal":6},"/resources/whitepaper-moving-to-git/",{"key":139},{"name":160,"items":161,"config":179},"Books",[162,171],{"header":163,"type":164,"image":165,"link":167},"Discover a Git branching strategy to simplify software development","Book",{"altText":163,"config":166},{"src":154},{"text":118,"config":168},{"href":169,"icon":170,"modal":6},"/resources/ebook-git-branching-strategies/","Ebook",{"header":172,"type":164,"image":173,"link":176},"Version control best practices eBook to accelerate delivery",{"altText":172,"config":174},{"src":175},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158619/Website/Topics/resources_18.jpg",{"text":118,"config":177},{"href":178,"icon":170,"modal":6},"/resources/ebook-version-control-best-practices/",{"key":160},{"name":181,"items":182,"config":215},"Case studies",[183,193,201,208],{"header":184,"type":185,"image":186,"link":189},"Learn how Cook County assesses economic data with transparency and version control","Case study",{"altText":184,"config":187},{"src":188},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158657/Website/Topics/resources_8.jpg",{"text":118,"config":190},{"href":191,"icon":192,"modal":6},"/customers/cook-county/","CaseStudy",{"header":194,"type":185,"image":195,"link":198},"Learn how Worldline uses GitLab to improve code reviews",{"altText":194,"config":196},{"src":197},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158599/Website/Topics/resources_3.jpg",{"text":118,"config":199},{"href":200,"icon":192,"modal":6}," /customers/worldline/",{"header":202,"type":185,"image":203,"link":205},"Read how Remote uses GitLab to meet 100% of deadlines",{"altText":202,"config":204},{"src":125},{"text":118,"config":206},{"href":207,"icon":192,"modal":6},"/customers/remote/",{"header":209,"type":185,"image":210,"link":212},"Read how Dublin City University uses GitLab SCM and CI to achieve top results",{"altText":209,"config":211},{"src":154},{"text":118,"config":213},{"href":214,"icon":192,"modal":6},"/customers/dublin-city-university/",{"key":181},{"type":104,"componentName":104,"componentContent":217},{"header":218,"tabs":219},"Suggested Content",[220],{"name":221,"items":222,"config":248},"resources",[223,232,240],{"header":224,"type":225,"image":226,"link":229},"15 Git tips to improve your workflow","Blog",{"altText":224,"config":227},{"src":228},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159549/Website/Topics/git-15th-anniversary-cover.png",{"text":118,"config":230},{"href":231,"icon":225,"modal":6},"/blog/15-git-tips-improve-workflow/",{"header":233,"type":225,"image":234,"link":237},"Why you should move from centralized version control to distributed version control",{"altText":233,"config":235},{"src":236},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159558/Website/Topics/distributedvcs.jpg",{"text":118,"config":238},{"href":239,"icon":225,"modal":6},"/blog/move-to-distributed-vcs/",{"header":241,"type":225,"image":242,"link":245},"The problem with Git flow",{"altText":241,"config":243},{"src":244},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158457/Website/Topics/whatisgitlabflow.jpg",{"text":118,"config":246},{"href":247,"icon":225,"modal":6},"/blog/what-is-gitlab-flow/",{"key":221},{"type":250,"componentName":250},"CommonNextSteps","content:en-us:topics:version-control:index.yml","yaml","content","en-us/topics/version-control/index.yml","en-us/topics/version-control/index","yml",{"_path":258,"_dir":259,"_draft":6,"_partial":6,"_locale":7,"data":260,"_id":667,"_type":252,"title":668,"_source":253,"_file":669,"_stem":670,"_extension":256},"/shared/en-us/main-navigation","en-us",{"logo":261,"freeTrial":266,"sales":271,"login":276,"items":281,"search":608,"minimal":639,"duo":658},{"config":262},{"href":263,"dataGaName":264,"dataGaLocation":265},"/","gitlab logo","header",{"text":267,"config":268},"Get free trial",{"href":269,"dataGaName":270,"dataGaLocation":265},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":272,"config":273},"Talk to sales",{"href":274,"dataGaName":275,"dataGaLocation":265},"/sales/","sales",{"text":277,"config":278},"Sign in",{"href":279,"dataGaName":280,"dataGaLocation":265},"https://gitlab.com/users/sign_in/","sign in",[282,325,420,425,529,589],{"text":283,"config":284,"cards":286,"footer":308},"Platform",{"dataNavLevelOne":285},"platform",[287,293,301],{"title":283,"description":288,"link":289},"The most comprehensive AI-powered DevSecOps Platform",{"text":290,"config":291},"Explore our Platform",{"href":292,"dataGaName":285,"dataGaLocation":265},"/platform/",{"title":294,"description":295,"link":296},"GitLab Duo (AI)","Build software faster with AI at every stage of development",{"text":297,"config":298},"Meet GitLab Duo",{"href":299,"dataGaName":300,"dataGaLocation":265},"/gitlab-duo/","gitlab duo ai",{"title":302,"description":303,"link":304},"Why GitLab","10 reasons why Enterprises choose GitLab",{"text":118,"config":305},{"href":306,"dataGaName":307,"dataGaLocation":265},"/why-gitlab/","why gitlab",{"title":309,"items":310},"Get started with",[311,316,321],{"text":312,"config":313},"Platform Engineering",{"href":314,"dataGaName":315,"dataGaLocation":265},"/solutions/platform-engineering/","platform engineering",{"text":317,"config":318},"Developer Experience",{"href":319,"dataGaName":320,"dataGaLocation":265},"/developer-experience/","Developer experience",{"text":322,"config":323},"MLOps",{"href":324,"dataGaName":322,"dataGaLocation":265},"/topics/devops/the-role-of-ai-in-devops/",{"text":326,"left":327,"config":328,"link":330,"lists":334,"footer":402},"Product",true,{"dataNavLevelOne":329},"solutions",{"text":331,"config":332},"View all Solutions",{"href":333,"dataGaName":329,"dataGaLocation":265},"/solutions/",[335,359,381],{"title":336,"description":337,"link":338,"items":343},"Automation","CI/CD and automation to accelerate deployment",{"config":339},{"icon":340,"href":341,"dataGaName":342,"dataGaLocation":265},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[344,348,352,355],{"text":345,"config":346},"CI/CD",{"href":347,"dataGaLocation":265,"dataGaName":345},"/solutions/continuous-integration/",{"text":349,"config":350},"AI-Assisted Development",{"href":299,"dataGaLocation":265,"dataGaName":351},"AI assisted development",{"text":353,"config":354},"Source Code Management",{"href":149,"dataGaLocation":265,"dataGaName":353},{"text":356,"config":357},"Automated Software Delivery",{"href":341,"dataGaLocation":265,"dataGaName":358},"Automated software delivery",{"title":360,"description":361,"link":362,"items":367},"Security","Deliver code faster without compromising security",{"config":363},{"href":364,"dataGaName":365,"dataGaLocation":265,"icon":366},"/solutions/security-compliance/","security and compliance","ShieldCheckLight",[368,371,376],{"text":369,"config":370},"Security & Compliance",{"href":364,"dataGaLocation":265,"dataGaName":369},{"text":372,"config":373},"Software Supply Chain Security",{"href":374,"dataGaLocation":265,"dataGaName":375},"/solutions/supply-chain/","Software supply chain security",{"text":377,"config":378},"Compliance & Governance",{"href":379,"dataGaLocation":265,"dataGaName":380},"/solutions/continuous-software-compliance/","Compliance and governance",{"title":382,"link":383,"items":388},"Measurement",{"config":384},{"icon":385,"href":386,"dataGaName":387,"dataGaLocation":265},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[389,393,397],{"text":390,"config":391},"Visibility & Measurement",{"href":386,"dataGaLocation":265,"dataGaName":392},"Visibility and Measurement",{"text":394,"config":395},"Value Stream Management",{"href":396,"dataGaLocation":265,"dataGaName":394},"/solutions/value-stream-management/",{"text":398,"config":399},"Analytics & Insights",{"href":400,"dataGaLocation":265,"dataGaName":401},"/solutions/analytics-and-insights/","Analytics and insights",{"title":403,"items":404},"GitLab for",[405,410,415],{"text":406,"config":407},"Enterprise",{"href":408,"dataGaLocation":265,"dataGaName":409},"/enterprise/","enterprise",{"text":411,"config":412},"Small Business",{"href":413,"dataGaLocation":265,"dataGaName":414},"/small-business/","small business",{"text":416,"config":417},"Public Sector",{"href":418,"dataGaLocation":265,"dataGaName":419},"/solutions/public-sector/","public sector",{"text":421,"config":422},"Pricing",{"href":423,"dataGaName":424,"dataGaLocation":265,"dataNavLevelOne":424},"/pricing/","pricing",{"text":426,"config":427,"link":428,"lists":432,"feature":516},"Resources",{"dataNavLevelOne":221},{"text":429,"config":430},"View all resources",{"href":431,"dataGaName":221,"dataGaLocation":265},"/resources/",[433,466,488],{"title":434,"items":435},"Getting started",[436,441,446,451,456,461],{"text":437,"config":438},"Install",{"href":439,"dataGaName":440,"dataGaLocation":265},"/install/","install",{"text":442,"config":443},"Quick start guides",{"href":444,"dataGaName":445,"dataGaLocation":265},"/get-started/","quick setup checklists",{"text":447,"config":448},"Learn",{"href":449,"dataGaLocation":265,"dataGaName":450},"https://university.gitlab.com/","learn",{"text":452,"config":453},"Product documentation",{"href":454,"dataGaName":455,"dataGaLocation":265},"https://docs.gitlab.com/","product documentation",{"text":457,"config":458},"Best practice videos",{"href":459,"dataGaName":460,"dataGaLocation":265},"/getting-started-videos/","best practice videos",{"text":462,"config":463},"Integrations",{"href":464,"dataGaName":465,"dataGaLocation":265},"/integrations/","integrations",{"title":467,"items":468},"Discover",[469,474,478,483],{"text":470,"config":471},"Customer success stories",{"href":472,"dataGaName":473,"dataGaLocation":265},"/customers/","customer success stories",{"text":225,"config":475},{"href":476,"dataGaName":477,"dataGaLocation":265},"/blog/","blog",{"text":479,"config":480},"Remote",{"href":481,"dataGaName":482,"dataGaLocation":265},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":484,"config":485},"TeamOps",{"href":486,"dataGaName":487,"dataGaLocation":265},"/teamops/","teamops",{"title":489,"items":490},"Connect",[491,496,501,506,511],{"text":492,"config":493},"GitLab Services",{"href":494,"dataGaName":495,"dataGaLocation":265},"/services/","services",{"text":497,"config":498},"Community",{"href":499,"dataGaName":500,"dataGaLocation":265},"/community/","community",{"text":502,"config":503},"Forum",{"href":504,"dataGaName":505,"dataGaLocation":265},"https://forum.gitlab.com/","forum",{"text":507,"config":508},"Events",{"href":509,"dataGaName":510,"dataGaLocation":265},"/events/","events",{"text":512,"config":513},"Partners",{"href":514,"dataGaName":515,"dataGaLocation":265},"/partners/","partners",{"backgroundColor":517,"textColor":518,"text":519,"image":520,"link":524},"#2f2a6b","#fff","Insights for the future of software development",{"altText":521,"config":522},"the source promo card",{"src":523},"/images/navigation/the-source-promo-card.svg",{"text":525,"config":526},"Read the latest",{"href":527,"dataGaName":528,"dataGaLocation":265},"/the-source/","the source",{"text":530,"config":531,"lists":533},"Company",{"dataNavLevelOne":532},"company",[534],{"items":535},[536,541,547,549,554,559,564,569,574,579,584],{"text":537,"config":538},"About",{"href":539,"dataGaName":540,"dataGaLocation":265},"/company/","about",{"text":542,"config":543,"footerGa":546},"Jobs",{"href":544,"dataGaName":545,"dataGaLocation":265},"/jobs/","jobs",{"dataGaName":545},{"text":507,"config":548},{"href":509,"dataGaName":510,"dataGaLocation":265},{"text":550,"config":551},"Leadership",{"href":552,"dataGaName":553,"dataGaLocation":265},"/company/team/e-group/","leadership",{"text":555,"config":556},"Team",{"href":557,"dataGaName":558,"dataGaLocation":265},"/company/team/","team",{"text":560,"config":561},"Handbook",{"href":562,"dataGaName":563,"dataGaLocation":265},"https://handbook.gitlab.com/","handbook",{"text":565,"config":566},"Investor relations",{"href":567,"dataGaName":568,"dataGaLocation":265},"https://ir.gitlab.com/","investor relations",{"text":570,"config":571},"Trust Center",{"href":572,"dataGaName":573,"dataGaLocation":265},"/security/","trust center",{"text":575,"config":576},"AI Transparency Center",{"href":577,"dataGaName":578,"dataGaLocation":265},"/ai-transparency-center/","ai transparency center",{"text":580,"config":581},"Newsletter",{"href":582,"dataGaName":583,"dataGaLocation":265},"/company/contact/","newsletter",{"text":585,"config":586},"Press",{"href":587,"dataGaName":588,"dataGaLocation":265},"/press/","press",{"text":590,"config":591,"lists":592},"Contact us",{"dataNavLevelOne":532},[593],{"items":594},[595,598,603],{"text":272,"config":596},{"href":274,"dataGaName":597,"dataGaLocation":265},"talk to sales",{"text":599,"config":600},"Get help",{"href":601,"dataGaName":602,"dataGaLocation":265},"/support/","get help",{"text":604,"config":605},"Customer portal",{"href":606,"dataGaName":607,"dataGaLocation":265},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":609,"login":610,"suggestions":617},"Close",{"text":611,"link":612},"To search repositories and projects, login to",{"text":613,"config":614},"gitlab.com",{"href":279,"dataGaName":615,"dataGaLocation":616},"search login","search",{"text":618,"default":619},"Suggestions",[620,622,626,628,632,636],{"text":294,"config":621},{"href":299,"dataGaName":294,"dataGaLocation":616},{"text":623,"config":624},"Code Suggestions (AI)",{"href":625,"dataGaName":623,"dataGaLocation":616},"/solutions/code-suggestions/",{"text":345,"config":627},{"href":347,"dataGaName":345,"dataGaLocation":616},{"text":629,"config":630},"GitLab on AWS",{"href":631,"dataGaName":629,"dataGaLocation":616},"/partners/technology-partners/aws/",{"text":633,"config":634},"GitLab on Google Cloud",{"href":635,"dataGaName":633,"dataGaLocation":616},"/partners/technology-partners/google-cloud-platform/",{"text":637,"config":638},"Why GitLab?",{"href":306,"dataGaName":637,"dataGaLocation":616},{"freeTrial":640,"mobileIcon":645,"desktopIcon":650,"secondaryButton":653},{"text":641,"config":642},"Start free trial",{"href":643,"dataGaName":270,"dataGaLocation":644},"https://gitlab.com/-/trials/new/","nav",{"altText":646,"config":647},"Gitlab Icon",{"src":648,"dataGaName":649,"dataGaLocation":644},"/images/brand/gitlab-logo-tanuki.svg","gitlab icon",{"altText":646,"config":651},{"src":652,"dataGaName":649,"dataGaLocation":644},"/images/brand/gitlab-logo-type.svg",{"text":654,"config":655},"Get Started",{"href":656,"dataGaName":657,"dataGaLocation":644},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/compare/gitlab-vs-github/","get started",{"freeTrial":659,"mobileIcon":663,"desktopIcon":665},{"text":660,"config":661},"Learn more about GitLab Duo",{"href":299,"dataGaName":662,"dataGaLocation":644},"gitlab duo",{"altText":646,"config":664},{"src":648,"dataGaName":649,"dataGaLocation":644},{"altText":646,"config":666},{"src":652,"dataGaName":649,"dataGaLocation":644},"content:shared:en-us:main-navigation.yml","Main Navigation","shared/en-us/main-navigation.yml","shared/en-us/main-navigation",{"_path":672,"_dir":259,"_draft":6,"_partial":6,"_locale":7,"title":673,"button":674,"image":678,"config":681,"_id":683,"_type":252,"_source":253,"_file":684,"_stem":685,"_extension":256},"/shared/en-us/banner","is now in public beta!",{"text":118,"config":675},{"href":676,"dataGaName":677,"dataGaLocation":265},"/gitlab-duo/agent-platform/","duo banner",{"config":679},{"src":680},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1753720689/somrf9zaunk0xlt7ne4x.svg",{"layout":682},"release","content:shared:en-us:banner.yml","shared/en-us/banner.yml","shared/en-us/banner",{"_path":687,"_dir":259,"_draft":6,"_partial":6,"_locale":7,"data":688,"_id":893,"_type":252,"title":894,"_source":253,"_file":895,"_stem":896,"_extension":256},"/shared/en-us/main-footer",{"text":689,"source":690,"edit":696,"contribute":701,"config":706,"items":711,"minimal":885},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":691,"config":692},"View page source",{"href":693,"dataGaName":694,"dataGaLocation":695},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":697,"config":698},"Edit this page",{"href":699,"dataGaName":700,"dataGaLocation":695},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":702,"config":703},"Please contribute",{"href":704,"dataGaName":705,"dataGaLocation":695},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":707,"facebook":708,"youtube":709,"linkedin":710},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[712,735,792,821,855],{"title":283,"links":713,"subMenu":718},[714],{"text":715,"config":716},"DevSecOps platform",{"href":292,"dataGaName":717,"dataGaLocation":695},"devsecops platform",[719],{"title":421,"links":720},[721,725,730],{"text":722,"config":723},"View plans",{"href":423,"dataGaName":724,"dataGaLocation":695},"view plans",{"text":726,"config":727},"Why Premium?",{"href":728,"dataGaName":729,"dataGaLocation":695},"/pricing/premium/","why premium",{"text":731,"config":732},"Why Ultimate?",{"href":733,"dataGaName":734,"dataGaLocation":695},"/pricing/ultimate/","why ultimate",{"title":736,"links":737},"Solutions",[738,743,746,748,753,758,762,765,769,774,776,779,782,787],{"text":739,"config":740},"Digital transformation",{"href":741,"dataGaName":742,"dataGaLocation":695},"/topics/digital-transformation/","digital transformation",{"text":369,"config":744},{"href":364,"dataGaName":745,"dataGaLocation":695},"security & compliance",{"text":358,"config":747},{"href":341,"dataGaName":342,"dataGaLocation":695},{"text":749,"config":750},"Agile development",{"href":751,"dataGaName":752,"dataGaLocation":695},"/solutions/agile-delivery/","agile delivery",{"text":754,"config":755},"Cloud transformation",{"href":756,"dataGaName":757,"dataGaLocation":695},"/topics/cloud-native/","cloud transformation",{"text":759,"config":760},"SCM",{"href":149,"dataGaName":761,"dataGaLocation":695},"source code management",{"text":345,"config":763},{"href":347,"dataGaName":764,"dataGaLocation":695},"continuous integration & delivery",{"text":766,"config":767},"Value stream management",{"href":396,"dataGaName":768,"dataGaLocation":695},"value stream management",{"text":770,"config":771},"GitOps",{"href":772,"dataGaName":773,"dataGaLocation":695},"/solutions/gitops/","gitops",{"text":406,"config":775},{"href":408,"dataGaName":409,"dataGaLocation":695},{"text":777,"config":778},"Small business",{"href":413,"dataGaName":414,"dataGaLocation":695},{"text":780,"config":781},"Public sector",{"href":418,"dataGaName":419,"dataGaLocation":695},{"text":783,"config":784},"Education",{"href":785,"dataGaName":786,"dataGaLocation":695},"/solutions/education/","education",{"text":788,"config":789},"Financial services",{"href":790,"dataGaName":791,"dataGaLocation":695},"/solutions/finance/","financial services",{"title":426,"links":793},[794,796,798,800,803,805,807,809,811,813,815,817,819],{"text":437,"config":795},{"href":439,"dataGaName":440,"dataGaLocation":695},{"text":442,"config":797},{"href":444,"dataGaName":445,"dataGaLocation":695},{"text":447,"config":799},{"href":449,"dataGaName":450,"dataGaLocation":695},{"text":452,"config":801},{"href":454,"dataGaName":802,"dataGaLocation":695},"docs",{"text":225,"config":804},{"href":476,"dataGaName":477,"dataGaLocation":695},{"text":470,"config":806},{"href":472,"dataGaName":473,"dataGaLocation":695},{"text":479,"config":808},{"href":481,"dataGaName":482,"dataGaLocation":695},{"text":492,"config":810},{"href":494,"dataGaName":495,"dataGaLocation":695},{"text":484,"config":812},{"href":486,"dataGaName":487,"dataGaLocation":695},{"text":497,"config":814},{"href":499,"dataGaName":500,"dataGaLocation":695},{"text":502,"config":816},{"href":504,"dataGaName":505,"dataGaLocation":695},{"text":507,"config":818},{"href":509,"dataGaName":510,"dataGaLocation":695},{"text":512,"config":820},{"href":514,"dataGaName":515,"dataGaLocation":695},{"title":530,"links":822},[823,825,827,829,831,833,835,839,844,846,848,850],{"text":537,"config":824},{"href":539,"dataGaName":532,"dataGaLocation":695},{"text":542,"config":826},{"href":544,"dataGaName":545,"dataGaLocation":695},{"text":550,"config":828},{"href":552,"dataGaName":553,"dataGaLocation":695},{"text":555,"config":830},{"href":557,"dataGaName":558,"dataGaLocation":695},{"text":560,"config":832},{"href":562,"dataGaName":563,"dataGaLocation":695},{"text":565,"config":834},{"href":567,"dataGaName":568,"dataGaLocation":695},{"text":836,"config":837},"Sustainability",{"href":838,"dataGaName":836,"dataGaLocation":695},"/sustainability/",{"text":840,"config":841},"Diversity, inclusion and belonging (DIB)",{"href":842,"dataGaName":843,"dataGaLocation":695},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":570,"config":845},{"href":572,"dataGaName":573,"dataGaLocation":695},{"text":580,"config":847},{"href":582,"dataGaName":583,"dataGaLocation":695},{"text":585,"config":849},{"href":587,"dataGaName":588,"dataGaLocation":695},{"text":851,"config":852},"Modern Slavery Transparency Statement",{"href":853,"dataGaName":854,"dataGaLocation":695},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":856,"links":857},"Contact Us",[858,861,863,865,870,875,880],{"text":859,"config":860},"Contact an expert",{"href":274,"dataGaName":275,"dataGaLocation":695},{"text":599,"config":862},{"href":601,"dataGaName":602,"dataGaLocation":695},{"text":604,"config":864},{"href":606,"dataGaName":607,"dataGaLocation":695},{"text":866,"config":867},"Status",{"href":868,"dataGaName":869,"dataGaLocation":695},"https://status.gitlab.com/","status",{"text":871,"config":872},"Terms of use",{"href":873,"dataGaName":874,"dataGaLocation":695},"/terms/","terms of use",{"text":876,"config":877},"Privacy statement",{"href":878,"dataGaName":879,"dataGaLocation":695},"/privacy/","privacy statement",{"text":881,"config":882},"Cookie preferences",{"dataGaName":883,"dataGaLocation":695,"id":884,"isOneTrustButton":327},"cookie preferences","ot-sdk-btn",{"items":886},[887,889,891],{"text":871,"config":888},{"href":873,"dataGaName":874,"dataGaLocation":695},{"text":876,"config":890},{"href":878,"dataGaName":879,"dataGaLocation":695},{"text":881,"config":892},{"dataGaName":883,"dataGaLocation":695,"id":884,"isOneTrustButton":327},"content:shared:en-us:main-footer.yml","Main Footer","shared/en-us/main-footer.yml","shared/en-us/main-footer",{"_path":898,"_dir":259,"_draft":6,"_partial":6,"_locale":7,"header":899,"eyebrow":900,"blurb":901,"button":902,"secondaryButton":906,"_id":908,"_type":252,"title":909,"_source":253,"_file":910,"_stem":911,"_extension":256},"/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":267,"config":903},{"href":904,"dataGaName":270,"dataGaLocation":905},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":272,"config":907},{"href":274,"dataGaName":275,"dataGaLocation":905},"content:shared:en-us:next-steps.yml","Next Steps","shared/en-us/next-steps.yml","shared/en-us/next-steps",1754079062960]