SlideShare a Scribd company logo
git-flow
a successful branching model
branching model
decentralized but
   centralized
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
origin
subteam
fetches
origin
subteam
fetches
origin
subteam            subteam
fetches            fetches
origin
subteam            subteam
fetches            fetches
subteam fetches




             origin
subteam                     subteam
fetches                     fetches
subteam fetches




             origin
subteam                     subteam
fetches                     fetches
subteam fetches




             origin
subteam                     subteam
fetches                     fetches
subteam fetches




             origin
subteam                     subteam
fetches                     fetches
the main branches
production-ready state
develop   master
production-ready state
develop   master
production-ready state
develop   master
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod




                     próximo
                    release em
                       prod
production-ready state
develop   master



                   versão inicial
                     de prod




                     próximo
                    release em
                       prod




                     próximo
                    release em
                       prod
production-ready state
           develop   master



                              versão inicial
                                de prod




                                próximo
                               release em
                                  prod




WIP para                        próximo
próximo                        release em
 release                          prod
supporting branches
• Feature branches
• Release branches
• Hotfix branches
feature branches
•branch off from: develop
•merge back into: develop
•branching name convention, except:
  •master
  •develop
  •release-*
  •hotfix-*
feature
           develop
branches
feature
           develop
branches
feature
           develop
branches
feature
           develop
branches
feature
           develop
branches
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
           develop
branches




                     início desenv.
                     nova feature
feature
                          develop
               branches




                                    início desenv.
                                    nova feature




 fim desenv.
nova feature
feature
                          develop
               branches




                                    início desenv.
                                    nova feature




 fim desenv.
nova feature
feature
                          develop
               branches




                                    início desenv.
                                    nova feature




 fim desenv.
nova feature
feature
                          develop
               branches




                                    início desenv.
                                    nova feature




 fim desenv.
nova feature
feature
                          develop
               branches




                                    início desenv.
                                    nova feature




 fim desenv.
nova feature


                                       feature
                                      integrada
branching off

$ git checkout -b myfeature develop
Switched to a new branch “myfeature”


merging into

$ git checkout develop
Switched to branch “develop”
$ git merge --no-ff myfeature
Updating ea1b82a..05e9557
(Summary of changes)
$ git branch -d myfeature
Deleted branch “myfeature” (was 05e9557).
$ git push origin develop
branching off

$ git flow feature start myfeature
Switched to a new branch “myfeature”


merging into

$ git flow feature finish myfeature
Switched to branch “develop”
Updating ea1b82a..05e9557
(Summary of changes)
Deleted branch “myfeature” (was 05e9557).
release branches
•branch off from: develop
•merge back into: develop   and master
•branch name convention:
  •release-*
branching off

$ git checkout -b release-1.2 develop
Switched to a new branch “release-1.2”


merging into

$ git checkout master
Switched to branch “master”
$ git merge --no-ff release-1.2
Merge made by recursive.
(Summary of changes)
$ git tag -a 1.2

$ git checkout develop
Switched to branch “develop”
$ git merge --no-ff release-1.2
branching off

$ git flow release start 1.2
Switched to a new branch “release-1.2”


merging into

$ git flow release finish 1.2
Merge made by recursive.
(Summary of changes)
Deleted branch “release-1.2” (was f105d3).
hotfix branches
•branch off from: master
•merge back into: develop   and master
•branch name convention:
  •hotfix-*
develop   hotfixes   master
develop   hotfixes   master
develop   hotfixes   master
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop   hotfixes   master

                             tag
                             1.2
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




                                  tag
                                 1.2.1
          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




                                  tag
                                 1.2.1
          bug em prod
           corrigido
develop       hotfixes   master

                                 tag
                                 1.2




                                  tag
                                 1.2.1
          bug em prod
           corrigido
branching off

$ git checkout -b hotfix-1.2.1 master
Switched to a new branch “hotfix-1.2.1”


merging into

$ git checkout master
Switched to branch “master”
$ git merge --no-ff hotfix-1.2.1
Merge made by recursive.
(Summary of changes)
$ git tag -a 1.2.1

$ git checkout develop
Switched to branch “develop”
$ git merge --no-ff release-1.2.1
branching off

$ git flow hotfix start 1.2.1
Switched to a new branch “hotfix-1.2.1”


merging into

$ git flow hotfix finish 1.2.1
Merge made by recursive.
(Summary of changes)
Deleted branch “hotfix-1.2.1” (was 071ab57).
branching model
github-flow
  a simpler git workflow
•git-flow é mais do que precisam
•deploy contínuo para produção (>1/dia)
•a ideia de releases não importa
•hotfixes ~= small features
master “deploiável”
branches descritivas
   ex: novo-widget-rota
commit local a todo momento
    push regularmente
pull request
review   merge   deploy
git-flow
a successful branching model

More Related Content

Viewers also liked

Child sexual abuse
Child sexual abuseChild sexual abuse
Child sexual abuse
Corporate Law Chamber
 
Grad night slides 2014
Grad night slides 2014Grad night slides 2014
Grad night slides 2014
Elle Lee
 
Global Mobility Report 2012
Global Mobility Report 2012Global Mobility Report 2012
Global Mobility Report 2012
shaunrobertshydrogen
 
164187847 emb-engine-d4 ea
164187847 emb-engine-d4 ea164187847 emb-engine-d4 ea
164187847 emb-engine-d4 ea
Nelson Manríquez
 
Dieu tri ran da, nam da
Dieu tri ran da, nam daDieu tri ran da, nam da
Dieu tri ran da, nam daLong Nguyen
 
Procrastination
ProcrastinationProcrastination
Procrastination
Simon Hurry
 
Jash mehta erd assignment
Jash mehta erd assignmentJash mehta erd assignment
Jash mehta erd assignment
Jash Mehta
 
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
Deepak Mishra
 
Na co nezapomenout v online marketingu v roce 2012
Na co nezapomenout v online marketingu v roce 2012Na co nezapomenout v online marketingu v roce 2012
Na co nezapomenout v online marketingu v roce 2012
Kamil Staněk
 
CliqTags - Areas of Use
CliqTags - Areas of UseCliqTags - Areas of Use
CliqTags - Areas of Use
CliqTags
 

Viewers also liked (11)

Child sexual abuse
Child sexual abuseChild sexual abuse
Child sexual abuse
 
Tic´s
Tic´sTic´s
Tic´s
 
Grad night slides 2014
Grad night slides 2014Grad night slides 2014
Grad night slides 2014
 
Global Mobility Report 2012
Global Mobility Report 2012Global Mobility Report 2012
Global Mobility Report 2012
 
164187847 emb-engine-d4 ea
164187847 emb-engine-d4 ea164187847 emb-engine-d4 ea
164187847 emb-engine-d4 ea
 
Dieu tri ran da, nam da
Dieu tri ran da, nam daDieu tri ran da, nam da
Dieu tri ran da, nam da
 
Procrastination
ProcrastinationProcrastination
Procrastination
 
Jash mehta erd assignment
Jash mehta erd assignmentJash mehta erd assignment
Jash mehta erd assignment
 
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
Study And Implemenataion Of Advance Intrusion Detection And Prevention Sysyte...
 
Na co nezapomenout v online marketingu v roce 2012
Na co nezapomenout v online marketingu v roce 2012Na co nezapomenout v online marketingu v roce 2012
Na co nezapomenout v online marketingu v roce 2012
 
CliqTags - Areas of Use
CliqTags - Areas of UseCliqTags - Areas of Use
CliqTags - Areas of Use
 

Similar to Git flow

Develop and Maintain a Distro with Open Build Service
Develop and Maintain a Distro with Open Build ServiceDevelop and Maintain a Distro with Open Build Service
Develop and Maintain a Distro with Open Build Service
SUSE Labs Taipei
 
Git and Git Workflow Models as Catalysts of Software Development
Git and Git Workflow Models as Catalysts of Software DevelopmentGit and Git Workflow Models as Catalysts of Software Development
Git and Git Workflow Models as Catalysts of Software Development
Lemi Orhan Ergin
 
Virtualize and automate your development environment for fun and profit
Virtualize and automate your development environment for fun and profitVirtualize and automate your development environment for fun and profit
Virtualize and automate your development environment for fun and profit
Andreas Heim
 
Release planning
Release planningRelease planning
Release planning
Target Process
 
Release planning
Release planningRelease planning
Release planning
Oleg Seriaga
 
Git workflows
Git workflowsGit workflows
Git workflows
Thuc Le Dong
 
Gitflow
GitflowGitflow
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and Chef
Gerald Villorente
 
Collaborative development with git
Collaborative development with gitCollaborative development with git
Collaborative development with git
Joseluis Laso
 
Days with Heroku
Days with HerokuDays with Heroku
Days with Heroku
Jun OHWADA
 
David Nuescheler: Igniting CQ 5.3: What's New and Roadmap
David Nuescheler: Igniting CQ 5.3: What's New and RoadmapDavid Nuescheler: Igniting CQ 5.3: What's New and Roadmap
David Nuescheler: Igniting CQ 5.3: What's New and Roadmap
Day Software
 
3 workflow
3 workflow3 workflow
3 workflow
jessitron
 
Android Mobile Continuous Integration. UA Mobile 2016.
Android Mobile Continuous Integration. UA Mobile 2016.Android Mobile Continuous Integration. UA Mobile 2016.
Android Mobile Continuous Integration. UA Mobile 2016.
UA Mobile
 
Git collaboration
Git collaborationGit collaboration
Git collaboration
Pham Quy (Jack)
 
Introducing a Software Generator Framework - JAZOON12
Introducing a Software Generator Framework - JAZOON12Introducing a Software Generator Framework - JAZOON12
Introducing a Software Generator Framework - JAZOON12
Stephan Hochdörfer
 
Maven
MavenMaven
Vaadin 7 what next
Vaadin 7   what nextVaadin 7   what next
Vaadin 7 what next
Joonas Lehtinen
 
Continuous Delivery in OSS using Shipkit.org
Continuous Delivery in OSS using Shipkit.orgContinuous Delivery in OSS using Shipkit.org
Continuous Delivery in OSS using Shipkit.org
MarcinStachniuk
 
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
manssandstrom
 
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptxCoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
Hervé Boutemy
 

Similar to Git flow (20)

Develop and Maintain a Distro with Open Build Service
Develop and Maintain a Distro with Open Build ServiceDevelop and Maintain a Distro with Open Build Service
Develop and Maintain a Distro with Open Build Service
 
Git and Git Workflow Models as Catalysts of Software Development
Git and Git Workflow Models as Catalysts of Software DevelopmentGit and Git Workflow Models as Catalysts of Software Development
Git and Git Workflow Models as Catalysts of Software Development
 
Virtualize and automate your development environment for fun and profit
Virtualize and automate your development environment for fun and profitVirtualize and automate your development environment for fun and profit
Virtualize and automate your development environment for fun and profit
 
Release planning
Release planningRelease planning
Release planning
 
Release planning
Release planningRelease planning
Release planning
 
Git workflows
Git workflowsGit workflows
Git workflows
 
Gitflow
GitflowGitflow
Gitflow
 
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and Chef
 
Collaborative development with git
Collaborative development with gitCollaborative development with git
Collaborative development with git
 
Days with Heroku
Days with HerokuDays with Heroku
Days with Heroku
 
David Nuescheler: Igniting CQ 5.3: What's New and Roadmap
David Nuescheler: Igniting CQ 5.3: What's New and RoadmapDavid Nuescheler: Igniting CQ 5.3: What's New and Roadmap
David Nuescheler: Igniting CQ 5.3: What's New and Roadmap
 
3 workflow
3 workflow3 workflow
3 workflow
 
Android Mobile Continuous Integration. UA Mobile 2016.
Android Mobile Continuous Integration. UA Mobile 2016.Android Mobile Continuous Integration. UA Mobile 2016.
Android Mobile Continuous Integration. UA Mobile 2016.
 
Git collaboration
Git collaborationGit collaboration
Git collaboration
 
Introducing a Software Generator Framework - JAZOON12
Introducing a Software Generator Framework - JAZOON12Introducing a Software Generator Framework - JAZOON12
Introducing a Software Generator Framework - JAZOON12
 
Maven
MavenMaven
Maven
 
Vaadin 7 what next
Vaadin 7   what nextVaadin 7   what next
Vaadin 7 what next
 
Continuous Delivery in OSS using Shipkit.org
Continuous Delivery in OSS using Shipkit.orgContinuous Delivery in OSS using Shipkit.org
Continuous Delivery in OSS using Shipkit.org
 
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
Att lyckas med integration av arbetet från flera scrum team - Christophe Acho...
 
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptxCoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
 

Recently uploaded

GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
Wouter Lemaire
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 

Recently uploaded (20)

GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 

Git flow

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. \n
  96. \n
  97. \n
  98. \n
  99. \n
  100. \n
  101. \n
  102. \n
  103. \n
  104. \n
  105. \n
  106. \n
  107. \n
  108. \n
  109. \n
  110. \n
  111. \n
  112. \n
  113. \n
  114. \n
  115. \n
  116. \n
  117. \n
  118. \n
  119. \n
  120. \n
  121. \n