[{"data":1,"prerenderedAt":1006},["ShallowReactive",2],{"/blog/git-pull-vs-git-fetch-whats-the-difference":3,"navigation-en-us":219,"banner-en-us":647,"footer-en-us":657,"blog-post-authors-en-us-GitLab":902,"blog-related-posts-en-us-git-pull-vs-git-fetch-whats-the-difference":917,"blog-promotions-en-us":942,"next-steps-en-us":996},{"id":4,"title":5,"authors":6,"body":8,"category":198,"date":199,"description":200,"extension":201,"externalUrl":202,"faq":202,"featured":203,"heroImage":204,"meta":205,"navigation":206,"path":207,"seo":208,"slug":212,"stem":213,"tags":214,"template":217,"updatedDate":202,"__hash__":218},"blogPosts/en-us/blog/git-pull-vs-git-fetch-whats-the-difference.md","Git pull vs. git fetch: What's the difference? ",[7],"GitLab",{"type":9,"value":10,"toc":182},"minimark",[11,22,25,65,69,72,75,84,87,102,105,108,111,114,117,120,123,126,131,134,138,141,145,148,152],[12,13,14,15,21],"p",{},"The Git command is very popular as a ",[16,17,20],"a",{"href":18,"rel":19},"https://about.gitlab.com/topics/version-control/benefits-distributed-version-control-system/",[],"distributed version control system"," and is used when synchronization with a remote repository is necessary. The developer needs to choose the appropriate commands based on the project's needs. In this article, we will explain the basics and differences between git fetch and git pull, and provide a detailed explanation of their respective use cases.",[12,23,24],{},"Table of contents",[26,27,28,35,41,47,53,59],"ul",{},[29,30,31],"li",{},[16,32,34],{"href":33},"#git-fetch-and-git-pull-basics","Git fetch and git pull basics",[29,36,37],{},[16,38,40],{"href":39},"#what-is-git-fetch%3F","What is git fetch?",[29,42,43],{},[16,44,46],{"href":45},"#what-is-git-pull%3F","What is git pull?",[29,48,49],{},[16,50,52],{"href":51},"#when-to-use-git-fetch","When to use git fetch",[29,54,55],{},[16,56,58],{"href":57},"#when-to-use-git-pull","When to use git pull",[29,60,61],{},[16,62,64],{"href":63},"#git-fetch-and-git-pull-faqs","Git fetch and git pull FAQs",[66,67,34],"h2",{"id":68},"git-fetch-and-git-pull-basics",[12,70,71],{},"Git fetch and git pull are both Git commands used to retrieve update information from a remote repository. So, how do they differ? Git fetch downloads the changes from the remote repository to the local repository but does not make any changes to the current working directory. Since the changes are not merged into the local branch, you can check the changes from the remote repository without interrupting your current work. On the other hand, git pull retrieves the latest changes from the remote repository like git fetch, but it also automatically merges those changes into the current branch. In contrast to git fetch, git pull directly applies the changes from the remote repository to the local working directory.",[66,73,40],{"id":74},"what-is-git-fetch",[12,76,77,78,83],{},"The git fetch command retrieves the latest commit history from the remote repository, but it does not affect the local working directory. Even after fetching remote changes, they are not reflected in the local branch. It is primarily used when you want to retrieve the latest status from the remote repository and review the changes before they are reflected in the local repository. To apply the retrieved changes to the local branch, you need to manually run git merge or ",[16,79,82],{"href":80,"rel":81},"https://docs.gitlab.com/topics/git/git_rebase/",[],"git rebase",".",[66,85,46],{"id":86},"what-is-git-pull",[12,88,89,90,94,95,98,99,101],{},"The git pull command combines ",[91,92,93],"code",{},"git fetch"," and ",[91,96,97],{},"git merge"," (or ",[91,100,82],{},") into a single command. This allows you to fetch changes from the remote repository and automatically integrate them into the current local branch.",[12,103,104],{},"While git fetch retrieves changes from the remote repository without applying them to the local branch, running git pull automatically integrates the changes from the remote repository into the local branch.",[12,106,107],{},"Git pull is suitable for quickly reflecting remote changes in the local branch, but it can lead to conflicts, so caution is needed, especially when working with multiple people.",[66,109,52],{"id":110},"when-to-use-git-fetch",[12,112,113],{},"Git fetch is a command used to retrieve the latest information from a remote repository. The retrieved information is not directly reflected in the local branch. Using git pull will reflect all remote branches, including incorrect or problematic ones, in the local branch.",[12,115,116],{},"When changes are made simultaneously on both remote and local branches, or when there are new users on the team, it is safer to use git fetch to retrieve the remote branch contents first and then perform merge or rebase.",[66,118,58],{"id":119},"when-to-use-git-pull",[12,121,122],{},"Git pull is a command that performs more processes compared to git fetch. Git pull can perform both git fetch and additionally execute git merge or git rebase. For this reason, git pull is recommended when you want to quickly reflect changes from the remote repository in the local branch.",[66,124,64],{"id":125},"git-fetch-and-git-pull-faqs",[127,128,130],"h3",{"id":129},"what-is-the-difference-between-git-pull-and-git-fetch","What is the difference between git pull and git fetch?",[12,132,133],{},"Git pull is a command that performs git fetch followed by git merge or git rebase. While git fetch does not affect the local repository, git pull automatically synchronizes changes from the remote repository with the local repository.",[127,135,137],{"id":136},"what-precautions-should-be-taken-when-using-git-pull","What precautions should be taken when using git pull?",[12,139,140],{},"When executing git pull, there may be conflicts between remote and local changes. Merge conflicts are particularly likely to occur, so if conflicts arise, they need to be resolved manually. Additionally, using git pull --rebase allows you to incorporate the latest changes while performing a rebase.",[127,142,144],{"id":143},"what-is-git-fetch-used-for","What is git fetch used for?",[12,146,147],{},"Git fetch is useful for checking and retrieving the latest status of the remote repository. However, the changes retrieved are not automatically reflected in the local branch; git fetch is used to synchronize the local and remote repositories.",[66,149,151],{"id":150},"read-more","Read more",[26,153,154,161,168,175],{},[29,155,156],{},[16,157,160],{"href":158,"rel":159},"https://about.gitlab.com/blog/whats-new-in-git-2-46-0/",[],"What's new in Git 2.46",[29,162,163],{},[16,164,167],{"href":165,"rel":166},"https://docs.gitlab.com/topics/git/",[],"Learn Git",[29,169,170],{},[16,171,174],{"href":172,"rel":173},"https://docs.gitlab.com/administration/gitaly/",[],"Learn about GitLab Gitaly",[29,176,177],{},[16,178,181],{"href":179,"rel":180},"https://about.gitlab.com/blog/git-command-line-on-windows-with-git-bash/",[],"Learn about Git command line on Windows",{"title":183,"searchDepth":184,"depth":184,"links":185},"",2,[186,187,188,189,190,191,197],{"id":68,"depth":184,"text":34},{"id":74,"depth":184,"text":40},{"id":86,"depth":184,"text":46},{"id":110,"depth":184,"text":52},{"id":119,"depth":184,"text":58},{"id":125,"depth":184,"text":64,"children":192},[193,195,196],{"id":129,"depth":194,"text":130},3,{"id":136,"depth":194,"text":137},{"id":143,"depth":194,"text":144},{"id":150,"depth":184,"text":151},"open-source","2024-09-24","Git pull is a Git command that performs both git fetch and git merge simultaneously. This article outlines the characteristics and appropriate uses of each.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660028/Blog/Hero%20Images/blog-image-template-1800x945__25_.png",{},true,"/en-us/blog/git-pull-vs-git-fetch-whats-the-difference",{"title":5,"description":200,"ogTitle":5,"ogDescription":200,"noIndex":203,"ogImage":204,"ogUrl":209,"ogSiteName":210,"ogType":211,"canonicalUrls":209},"https://about.gitlab.com/blog/git-pull-vs-git-fetch-whats-the-difference","https://about.gitlab.com","article","git-pull-vs-git-fetch-whats-the-difference","en-us/blog/git-pull-vs-git-fetch-whats-the-difference",[215,216],"git","open source","BlogPost","dCiXooWLdlfienv-rAP75vGeBtn3SggmolQ0gepxpOI",{"logo":220,"freeTrial":225,"sales":230,"login":235,"items":240,"search":567,"minimal":598,"duo":617,"switchNav":626,"pricingDeployment":637},{"config":221},{"href":222,"dataGaName":223,"dataGaLocation":224},"/","gitlab logo","header",{"text":226,"config":227},"Get free trial",{"href":228,"dataGaName":229,"dataGaLocation":224},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":231,"config":232},"Request a demo",{"href":233,"dataGaName":234,"dataGaLocation":224},"/sales/?contact-topic=request-demo","sales",{"text":236,"config":237},"Sign in",{"href":238,"dataGaName":239,"dataGaLocation":224},"https://gitlab.com/users/sign_in/","sign in",[241,270,370,375,489,545],{"text":242,"config":243,"menu":245},"Platform",{"dataNavLevelOne":244},"platform",{"type":246,"columns":247},"cards",[248,254,262],{"title":242,"description":249,"link":250},"The intelligent orchestration platform for DevSecOps",{"text":251,"config":252},"Explore our Platform",{"href":253,"dataGaName":244,"dataGaLocation":224},"/platform/",{"title":255,"description":256,"link":257},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":258,"config":259},"Meet GitLab Duo",{"href":260,"dataGaName":261,"dataGaLocation":224},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":263,"description":264,"link":265},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":266,"config":267},"Learn more",{"href":268,"dataGaName":269,"dataGaLocation":224},"/why-gitlab/","why gitlab",{"text":271,"left":206,"config":272,"menu":274},"Product",{"dataNavLevelOne":273},"solutions",{"type":275,"link":276,"columns":280,"feature":349},"lists",{"text":277,"config":278},"View all Solutions",{"href":279,"dataGaName":273,"dataGaLocation":224},"/solutions/",[281,305,328],{"title":282,"description":283,"link":284,"items":289},"Automation","CI/CD and automation to accelerate deployment",{"config":285},{"icon":286,"href":287,"dataGaName":288,"dataGaLocation":224},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[290,294,297,301],{"text":291,"config":292},"CI/CD",{"href":293,"dataGaLocation":224,"dataGaName":291},"/solutions/continuous-integration/",{"text":255,"config":295},{"href":260,"dataGaLocation":224,"dataGaName":296},"gitlab duo agent platform - product menu",{"text":298,"config":299},"Source Code Management",{"href":300,"dataGaLocation":224,"dataGaName":298},"/solutions/source-code-management/",{"text":302,"config":303},"Automated Software Delivery",{"href":287,"dataGaLocation":224,"dataGaName":304},"Automated software delivery",{"title":306,"description":307,"link":308,"items":313},"Security","Deliver code faster without compromising security",{"config":309},{"href":310,"dataGaName":311,"dataGaLocation":224,"icon":312},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[314,318,323],{"text":315,"config":316},"Application Security Testing",{"href":310,"dataGaName":317,"dataGaLocation":224},"Application security testing",{"text":319,"config":320},"Software Supply Chain Security",{"href":321,"dataGaLocation":224,"dataGaName":322},"/solutions/supply-chain/","Software supply chain security",{"text":324,"config":325},"Software Compliance",{"href":326,"dataGaName":327,"dataGaLocation":224},"/solutions/software-compliance/","software compliance",{"title":329,"link":330,"items":335},"Measurement",{"config":331},{"icon":332,"href":333,"dataGaName":334,"dataGaLocation":224},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[336,340,344],{"text":337,"config":338},"Visibility & Measurement",{"href":333,"dataGaLocation":224,"dataGaName":339},"Visibility and Measurement",{"text":341,"config":342},"Value Stream Management",{"href":343,"dataGaLocation":224,"dataGaName":341},"/solutions/value-stream-management/",{"text":345,"config":346},"Analytics & Insights",{"href":347,"dataGaLocation":224,"dataGaName":348},"/solutions/analytics-and-insights/","Analytics and insights",{"title":350,"type":275,"items":351},"GitLab for",[352,358,364],{"text":353,"config":354},"Enterprise",{"icon":355,"href":356,"dataGaLocation":224,"dataGaName":357},"Building","/enterprise/","enterprise",{"text":359,"config":360},"Small Business",{"icon":361,"href":362,"dataGaLocation":224,"dataGaName":363},"Work","/small-business/","small business",{"text":365,"config":366},"Public Sector",{"icon":367,"href":368,"dataGaLocation":224,"dataGaName":369},"Organization","/solutions/public-sector/","public sector",{"text":371,"config":372},"Pricing",{"href":373,"dataGaName":374,"dataGaLocation":224,"dataNavLevelOne":374},"/pricing/","pricing",{"text":376,"config":377,"menu":379},"Resources",{"dataNavLevelOne":378},"resources",{"type":275,"link":380,"columns":384,"feature":478},{"text":381,"config":382},"View all resources",{"href":383,"dataGaName":378,"dataGaLocation":224},"/resources/",[385,418,445],{"title":386,"items":387},"Getting started",[388,393,398,403,408,413],{"text":389,"config":390},"Install",{"href":391,"dataGaName":392,"dataGaLocation":224},"/install/","install",{"text":394,"config":395},"Quick start guides",{"href":396,"dataGaName":397,"dataGaLocation":224},"/get-started/","quick setup checklists",{"text":399,"config":400},"Learn",{"href":401,"dataGaLocation":224,"dataGaName":402},"https://university.gitlab.com/","learn",{"text":404,"config":405},"Product documentation",{"href":406,"dataGaName":407,"dataGaLocation":224},"https://docs.gitlab.com/","product documentation",{"text":409,"config":410},"Best practice videos",{"href":411,"dataGaName":412,"dataGaLocation":224},"/getting-started-videos/","best practice videos",{"text":414,"config":415},"Integrations",{"href":416,"dataGaName":417,"dataGaLocation":224},"/integrations/","integrations",{"title":419,"items":420},"Discover",[421,426,431,436,440],{"text":422,"config":423},"Customer success stories",{"href":424,"dataGaName":425,"dataGaLocation":224},"/customers/","customer success stories",{"text":427,"config":428},"Blog",{"href":429,"dataGaName":430,"dataGaLocation":224},"/blog/","blog",{"text":432,"config":433},"Demo Hub",{"href":434,"dataGaName":435,"dataGaLocation":224},"/demo-hub/","demo hub",{"text":437,"config":438},"The Source",{"href":439,"dataGaName":430,"dataGaLocation":224},"/the-source/",{"text":441,"config":442},"Remote",{"href":443,"dataGaName":444,"dataGaLocation":224},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":446,"items":447},"Connect",[448,453,458,463,468,473],{"text":449,"config":450},"GitLab Services",{"href":451,"dataGaName":452,"dataGaLocation":224},"/services/","services",{"text":454,"config":455},"Contribute",{"href":456,"dataGaName":457,"dataGaLocation":224},"https://contributors.gitlab.com","contribute",{"text":459,"config":460},"Community",{"href":461,"dataGaName":462,"dataGaLocation":224},"/community/","community",{"text":464,"config":465},"Forum",{"href":466,"dataGaName":467,"dataGaLocation":224},"https://forum.gitlab.com/","forum",{"text":469,"config":470},"Events",{"href":471,"dataGaName":472,"dataGaLocation":224},"/events/","events",{"text":474,"config":475},"Partners",{"href":476,"dataGaName":477,"dataGaLocation":224},"/partners/","partners",{"config":479,"title":482,"text":483,"link":484},{"background":480,"textColor":481},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":485,"config":486},"Read the latest",{"href":487,"dataGaName":488,"dataGaLocation":224},"/whats-new/","whats new",{"text":490,"config":491,"menu":493},"Company",{"dataNavLevelOne":492},"company",{"type":275,"columns":494},[495],{"items":496},[497,502,508,510,515,520,525,530,535,540],{"text":498,"config":499},"About",{"href":500,"dataGaName":501,"dataGaLocation":224},"/company/","about",{"text":503,"config":504,"footerGa":507},"Jobs",{"href":505,"dataGaName":506,"dataGaLocation":224},"/jobs/","jobs",{"dataGaName":506},{"text":469,"config":509},{"href":471,"dataGaName":472,"dataGaLocation":224},{"text":511,"config":512},"Leadership",{"href":513,"dataGaName":514,"dataGaLocation":224},"/company/team/e-group/","leadership",{"text":516,"config":517},"Handbook",{"href":518,"dataGaName":519,"dataGaLocation":224},"https://handbook.gitlab.com/","handbook",{"text":521,"config":522},"Investor relations",{"href":523,"dataGaName":524,"dataGaLocation":224},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":526,"config":527},"Trust Center",{"href":528,"dataGaName":529,"dataGaLocation":224},"/security/","trust center",{"text":531,"config":532},"AI Transparency Center",{"href":533,"dataGaName":534,"dataGaLocation":224},"/ai-transparency-center/","ai transparency center",{"text":536,"config":537},"Newsletter",{"href":538,"dataGaName":539,"dataGaLocation":224},"/company/contact/#contact-forms","newsletter",{"text":541,"config":542},"Press",{"href":543,"dataGaName":544,"dataGaLocation":224},"/press/","press",{"text":546,"config":547,"menu":548},"Contact us",{"dataNavLevelOne":492},{"type":275,"columns":549},[550],{"items":551},[552,557,562],{"text":553,"config":554},"Talk to sales",{"href":555,"dataGaName":556,"dataGaLocation":224},"/sales/","talk to sales",{"text":558,"config":559},"Support portal",{"href":560,"dataGaName":561,"dataGaLocation":224},"https://support.gitlab.com/hc/en-us","support portal",{"text":563,"config":564},"Customer portal",{"href":565,"dataGaName":566,"dataGaLocation":224},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":568,"login":569,"suggestions":576},"Close",{"text":570,"link":571},"To search repositories and projects, login to",{"text":572,"config":573},"gitlab.com",{"href":238,"dataGaName":574,"dataGaLocation":575},"search login","search",{"text":577,"default":578},"Suggestions",[579,581,585,587,591,595],{"text":255,"config":580},{"href":260,"dataGaName":255,"dataGaLocation":575},{"text":582,"config":583},"Code Suggestions (AI)",{"href":584,"dataGaName":582,"dataGaLocation":575},"/solutions/code-suggestions/",{"text":291,"config":586},{"href":293,"dataGaName":291,"dataGaLocation":575},{"text":588,"config":589},"GitLab on AWS",{"href":590,"dataGaName":588,"dataGaLocation":575},"/partners/technology-partners/aws/",{"text":592,"config":593},"GitLab on Google Cloud",{"href":594,"dataGaName":592,"dataGaLocation":575},"/partners/technology-partners/google-cloud-platform/",{"text":596,"config":597},"Why GitLab?",{"href":268,"dataGaName":596,"dataGaLocation":575},{"freeTrial":599,"mobileIcon":604,"desktopIcon":609,"secondaryButton":612},{"text":600,"config":601},"Start free trial",{"href":602,"dataGaName":229,"dataGaLocation":603},"https://gitlab.com/-/trials/new/","nav",{"altText":605,"config":606},"Gitlab Icon",{"src":607,"dataGaName":608,"dataGaLocation":603},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":605,"config":610},{"src":611,"dataGaName":608,"dataGaLocation":603},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":613,"config":614},"Get Started",{"href":615,"dataGaName":616,"dataGaLocation":603},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":618,"mobileIcon":622,"desktopIcon":624},{"text":619,"config":620},"Learn more about GitLab Duo",{"href":260,"dataGaName":621,"dataGaLocation":603},"gitlab duo",{"altText":605,"config":623},{"src":607,"dataGaName":608,"dataGaLocation":603},{"altText":605,"config":625},{"src":611,"dataGaName":608,"dataGaLocation":603},{"button":627,"mobileIcon":632,"desktopIcon":634},{"text":628,"config":629},"/switch",{"href":630,"dataGaName":631,"dataGaLocation":603},"#contact","switch",{"altText":605,"config":633},{"src":607,"dataGaName":608,"dataGaLocation":603},{"altText":605,"config":635},{"src":636,"dataGaName":608,"dataGaLocation":603},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":638,"mobileIcon":643,"desktopIcon":645},{"text":639,"config":640},"Back to pricing",{"href":373,"dataGaName":641,"dataGaLocation":603,"icon":642},"back to pricing","GoBack",{"altText":605,"config":644},{"src":607,"dataGaName":608,"dataGaLocation":603},{"altText":605,"config":646},{"src":611,"dataGaName":608,"dataGaLocation":603},{"title":648,"titleMobile":649,"button":650,"config":655},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":266,"config":651},{"href":652,"dataGaName":653,"dataGaLocation":654},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":656,"disabled":203},"release",{"data":658},{"text":659,"source":660,"edit":666,"contribute":671,"config":676,"items":681,"minimal":891},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":661,"config":662},"View page source",{"href":663,"dataGaName":664,"dataGaLocation":665},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":667,"config":668},"Edit this page",{"href":669,"dataGaName":670,"dataGaLocation":665},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":672,"config":673},"Please contribute",{"href":674,"dataGaName":675,"dataGaLocation":665},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":677,"facebook":678,"youtube":679,"linkedin":680},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[682,729,783,827,859],{"title":371,"links":683,"subMenu":698},[684,688,693],{"text":685,"config":686},"View plans",{"href":373,"dataGaName":687,"dataGaLocation":665},"view plans",{"text":689,"config":690},"Why Premium?",{"href":691,"dataGaName":692,"dataGaLocation":665},"/pricing/premium/","why premium",{"text":694,"config":695},"Why Ultimate?",{"href":696,"dataGaName":697,"dataGaLocation":665},"/pricing/ultimate/","why ultimate",[699],{"title":700,"links":701},"Contact Us",[702,705,707,709,714,719,724],{"text":703,"config":704},"Contact sales",{"href":555,"dataGaName":234,"dataGaLocation":665},{"text":558,"config":706},{"href":560,"dataGaName":561,"dataGaLocation":665},{"text":563,"config":708},{"href":565,"dataGaName":566,"dataGaLocation":665},{"text":710,"config":711},"Status",{"href":712,"dataGaName":713,"dataGaLocation":665},"https://status.gitlab.com/","status",{"text":715,"config":716},"Terms of use",{"href":717,"dataGaName":718,"dataGaLocation":665},"/terms/","terms of use",{"text":720,"config":721},"Privacy statement",{"href":722,"dataGaName":723,"dataGaLocation":665},"/privacy/","privacy statement",{"text":725,"config":726},"Cookie preferences",{"dataGaName":727,"dataGaLocation":665,"id":728,"isOneTrustButton":206},"cookie preferences","ot-sdk-btn",{"title":271,"links":730,"subMenu":739},[731,735],{"text":732,"config":733},"DevSecOps platform",{"href":253,"dataGaName":734,"dataGaLocation":665},"devsecops platform",{"text":736,"config":737},"AI-Assisted Development",{"href":260,"dataGaName":738,"dataGaLocation":665},"ai-assisted development",[740],{"title":741,"links":742},"Topics",[743,748,753,758,763,768,773,778],{"text":744,"config":745},"CICD",{"href":746,"dataGaName":747,"dataGaLocation":665},"/topics/ci-cd/","cicd",{"text":749,"config":750},"GitOps",{"href":751,"dataGaName":752,"dataGaLocation":665},"/topics/gitops/","gitops",{"text":754,"config":755},"DevOps",{"href":756,"dataGaName":757,"dataGaLocation":665},"/topics/devops/","devops",{"text":759,"config":760},"Version Control",{"href":761,"dataGaName":762,"dataGaLocation":665},"/topics/version-control/","version control",{"text":764,"config":765},"DevSecOps",{"href":766,"dataGaName":767,"dataGaLocation":665},"/topics/devsecops/","devsecops",{"text":769,"config":770},"Cloud Native",{"href":771,"dataGaName":772,"dataGaLocation":665},"/topics/cloud-native/","cloud native",{"text":774,"config":775},"AI for Coding",{"href":776,"dataGaName":777,"dataGaLocation":665},"/topics/devops/ai-for-coding/","ai for coding",{"text":779,"config":780},"Agentic AI",{"href":781,"dataGaName":782,"dataGaLocation":665},"/topics/agentic-ai/","agentic ai",{"title":784,"links":785},"Solutions",[786,788,790,795,799,802,806,809,811,814,817,822],{"text":315,"config":787},{"href":310,"dataGaName":315,"dataGaLocation":665},{"text":304,"config":789},{"href":287,"dataGaName":288,"dataGaLocation":665},{"text":791,"config":792},"Agile development",{"href":793,"dataGaName":794,"dataGaLocation":665},"/solutions/agile-delivery/","agile delivery",{"text":796,"config":797},"SCM",{"href":300,"dataGaName":798,"dataGaLocation":665},"source code management",{"text":744,"config":800},{"href":293,"dataGaName":801,"dataGaLocation":665},"continuous integration & delivery",{"text":803,"config":804},"Value stream management",{"href":343,"dataGaName":805,"dataGaLocation":665},"value stream management",{"text":749,"config":807},{"href":808,"dataGaName":752,"dataGaLocation":665},"/solutions/gitops/",{"text":353,"config":810},{"href":356,"dataGaName":357,"dataGaLocation":665},{"text":812,"config":813},"Small business",{"href":362,"dataGaName":363,"dataGaLocation":665},{"text":815,"config":816},"Public sector",{"href":368,"dataGaName":369,"dataGaLocation":665},{"text":818,"config":819},"Education",{"href":820,"dataGaName":821,"dataGaLocation":665},"/solutions/education/","education",{"text":823,"config":824},"Financial services",{"href":825,"dataGaName":826,"dataGaLocation":665},"/solutions/finance/","financial services",{"title":376,"links":828},[829,831,833,835,838,840,843,845,847,849,851,853,855,857],{"text":389,"config":830},{"href":391,"dataGaName":392,"dataGaLocation":665},{"text":394,"config":832},{"href":396,"dataGaName":397,"dataGaLocation":665},{"text":399,"config":834},{"href":401,"dataGaName":402,"dataGaLocation":665},{"text":404,"config":836},{"href":406,"dataGaName":837,"dataGaLocation":665},"docs",{"text":427,"config":839},{"href":429,"dataGaName":430,"dataGaLocation":665},{"text":841,"config":842},"What's new",{"href":487,"dataGaName":488,"dataGaLocation":665},{"text":422,"config":844},{"href":424,"dataGaName":425,"dataGaLocation":665},{"text":441,"config":846},{"href":443,"dataGaName":444,"dataGaLocation":665},{"text":449,"config":848},{"href":451,"dataGaName":452,"dataGaLocation":665},{"text":454,"config":850},{"href":456,"dataGaName":457,"dataGaLocation":665},{"text":459,"config":852},{"href":461,"dataGaName":462,"dataGaLocation":665},{"text":464,"config":854},{"href":466,"dataGaName":467,"dataGaLocation":665},{"text":469,"config":856},{"href":471,"dataGaName":472,"dataGaLocation":665},{"text":474,"config":858},{"href":476,"dataGaName":477,"dataGaLocation":665},{"title":490,"links":860},[861,863,865,867,869,871,875,880,882,884,886],{"text":498,"config":862},{"href":500,"dataGaName":492,"dataGaLocation":665},{"text":503,"config":864},{"href":505,"dataGaName":506,"dataGaLocation":665},{"text":511,"config":866},{"href":513,"dataGaName":514,"dataGaLocation":665},{"text":516,"config":868},{"href":518,"dataGaName":519,"dataGaLocation":665},{"text":521,"config":870},{"href":523,"dataGaName":524,"dataGaLocation":665},{"text":872,"config":873},"Sustainability",{"href":874,"dataGaName":872,"dataGaLocation":665},"/sustainability/",{"text":876,"config":877},"Diversity, inclusion and belonging (DIB)",{"href":878,"dataGaName":879,"dataGaLocation":665},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":526,"config":881},{"href":528,"dataGaName":529,"dataGaLocation":665},{"text":536,"config":883},{"href":538,"dataGaName":539,"dataGaLocation":665},{"text":541,"config":885},{"href":543,"dataGaName":544,"dataGaLocation":665},{"text":887,"config":888},"Modern Slavery Transparency Statement",{"href":889,"dataGaName":890,"dataGaLocation":665},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":892},[893,896,899],{"text":894,"config":895},"Terms",{"href":717,"dataGaName":718,"dataGaLocation":665},{"text":897,"config":898},"Cookies",{"dataGaName":727,"dataGaLocation":665,"id":728,"isOneTrustButton":206},{"text":900,"config":901},"Privacy",{"href":722,"dataGaName":723,"dataGaLocation":665},[903],{"id":904,"title":905,"body":202,"config":906,"content":908,"description":202,"extension":911,"meta":912,"navigation":206,"path":913,"seo":914,"stem":915,"__hash__":916},"blogAuthors/en-us/blog/authors/gitlab.yml","Gitlab",{"template":907},"BlogAuthor",{"name":7,"config":909},{"headshot":910,"ctfId":7},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","yml",{},"/en-us/blog/authors/gitlab",{},"en-us/blog/authors/gitlab","XCBKIcPoCs6zi2oHG7o-bAp52Jhaw8_zGhIJ2jNrEjU",[918,926,934],{"title":919,"description":920,"heroImage":921,"category":198,"date":922,"authors":923,"slug":925,"externalUrl":202},"What's new in Git 2.55.0?","Learn about the new features and changes in Git 2.55, including a new git-history(1) fixup command, an fsmonitor daemon for Linux, pushing to remote groups, and more.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782732487/ztwgrvlolpifo01vj8qc.png","2026-06-29",[924],"Toon Claes","whats-new-in-git-2-55-0",{"title":927,"description":928,"heroImage":929,"category":198,"date":930,"authors":931,"slug":933,"externalUrl":202},"GitLab AI Hackathon 2026: Meet the winners","Nearly 7,000 developers built 600+ AI agents and flows on GitLab Duo Agent Platform. Find out who won and what they created.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1776457632/llddiylsgwuze0u1rjks.png","2026-04-22",[932],"Nick Veenhof","gitlab-ai-hackathon-2026-meet-the-winners",{"title":935,"description":936,"heroImage":937,"category":198,"date":938,"authors":939,"slug":941,"externalUrl":202},"What’s new in Git 2.54.0?","Learn about release contributions, including new repository maintenance, a new command to edit commit history, a replacement for git-sizer(1), and more.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782734716/ztwgrvlolpifo01vj8qc.png","2026-04-20",[940],"Patrick Steinhardt","whats-new-in-git-2-54-0",{"promotions":943},[944,958,970,982],{"id":945,"categories":946,"header":948,"text":949,"button":950,"image":955},"ai-modernization",[947],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":951,"config":952},"Get your AI maturity score",{"href":953,"dataGaName":954,"dataGaLocation":430},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":956},{"src":957},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":959,"categories":960,"header":962,"text":949,"button":963,"image":967},"devops-modernization",[961,767],"product","Are you just managing tools or shipping innovation?",{"text":964,"config":965},"Get your DevOps maturity score",{"href":966,"dataGaName":954,"dataGaLocation":430},"/assessments/devops-modernization-assessment/",{"config":968},{"src":969},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":971,"categories":972,"header":974,"text":949,"button":975,"image":979},"security-modernization",[973],"security","Are you trading speed for security?",{"text":976,"config":977},"Get your security maturity score",{"href":978,"dataGaName":954,"dataGaLocation":430},"/assessments/security-modernization-assessment/",{"config":980},{"src":981},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":983,"paths":984,"header":987,"text":988,"button":989,"image":994},"github-azure-migration",[985,986],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":990,"config":991},"See how GitLab compares to GitHub",{"href":992,"dataGaName":993,"dataGaLocation":430},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":995},{"src":969},{"header":997,"blurb":998,"button":999,"secondaryButton":1004},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1000,"config":1001},"Get your free trial",{"href":1002,"dataGaName":229,"dataGaLocation":1003},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":703,"config":1005},{"href":555,"dataGaName":234,"dataGaLocation":1003},1786803759812]