SlideShare ist ein Scribd-Unternehmen logo
1 von 31
Downloaden Sie, um offline zu lesen
Switching to Git
Using branches and pull requests
What’s the goal?
Ship code that is ready for production often.
•

Build software that we are confident in
shipping

•

Ship code more often to address needs

•

Become better developers through industry
standard practices (with fewer bad habits)
Three kinds of tasks ...
•

Features (Add or change marketable
features)

•

Bugs (Fix issues reported by users and staff)

•

Hotfix (Fix very urgent issue with platform)
But how often has this happened?
Too much going on

Release
r100

Release
r101

r102

r103
What if we could ...

Release Release
r103

r100

Release Release
r102

r101
You could make this work with subversion
•

Create a branch for each task (feature, bug,
hotfix)

•

Reintegrate / release in whatever order is
needed

•

Slow process and lots of opportunity for
errors.
Turns out, we are not alone in having
this issue ...
... and there’s already a (better/best)
practice
Most Important Slide™
•

Anything in the master branch is deployable

•

To work on something new, create a descriptively named branch off of master
(e.g. feature/new-oauth2-scopes)

•

Commit to that branch locally and regularly push your work to the same
named branch on the server

•

When you need feedback or help, or you think the branch is ready for
merging, open a pull request.

•

After someone else has reviewed and signed off on the feature, you can
merge it into master

•

Once it is merged and pushed to master, you can and should deploy
immediately
Stolen from http://scottchacon.com/2011/08/31/github-flow.html
What are git branches?
•

Files are blob objects in a database, stored
in .git/

•

A branch is really just a pointer to those objects

•

Switching branches is moving a pointer and
replacing the files (milliseconds)

•

Transparent to the file system
More on how it works at http://ftp.newartisans.com/pub/git.from.bottom.up.pdf
What is master?
•

The production-ready branch

•

Not the same thing as /trunk, other than it is
what all branches use as a parent

•

Git tags are created on code merged into
master, and those are then deployed to
production servers
Clone the repository
•

Grab a copy of the repository (only once)

$ cd ~/Sites/
$ git clone git@github.com/youruser/yourapp.git
Cloning into ‘yourapp’ ...
Create a branch
•

When you start a specific task, every time

$
*
$
$
*

git branch -l
master
git checkout -b bug/5012-fix-oauth
git branch -l
bug/5012-fix-oauth
master
Make changes
•

Do the work, commit it (and amend if
needed)
$ git branch -l
* bug/5012-fix-oauth
master
$ vim configuration/production.php
$ git add configuration/production.php
$ git commit -m “Fix OAuth secret for Twitter”
$ vim configuration/production.php
$ git add configuration/production.php
$ git commit --amend -m “Fix OAuth secret for Twitter, fixes
redmine #5012”
Push branch commits
•

Push to a named branch in the repository

$ git status
# On branch bug/5012-fix-oauth
nothing to commit, working directory clean
$ git push origin bug/5012-fix-oauth
Counting objects: 46, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22/22), done.
Writing objects: 100% (24/24), 3.83 KiB | 0 bytes/s, done.
Total 24 (delta 17), reused 8 (delta 1)
To git@github.com:youruser/yourapp.git
06ff761..b3ea751 bug/5012-fix-oauth -> bug/5012-fix-oauth
Open a pull request
•

A pull request is used for integration or
feedback
Discuss pull request, merge accepted
•

Each pull request is a candidate for inclusion
in master, or at least a discussion about best
approach

•

Even “good” pull requests might have
multiple revisions

•

False starts happen – branches are “cheap”
Continuous integration testing
•

Pull requests will trigger a Jenkins build job and
add a contextual link to it within Github

•

A “build” is a snapshot of the repository at a
particular commit that is run through a testing
regimen

•

At minimum, committed files are run through
linters and the results are reported back on the
pull request via an API
Cleaning up
•

Once a branch is merged, it can be deleted

$ git branch --merged
bug/5012-fix-oauth
$ git branch --no-merge
* master
feature/top-secret
$ git branch -d bug/5012-fix-oauth
Deleted branch bug/5012-fix-oauth (was a705432).
Wait, what about forks?
Not necessary

Stolen from http://zachholman.com/talk/how-github-uses-github-to-build-github/
Pulling upstream changes
Get upstream changes
•

Pick up changes in the master branch

•

Merge from another fork/branch of changes
$ git pull origin master
remote: Counting objects: 18, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 11 (delta 8), reused 9 (delta 6)
Unpacking objects: 100% (11/11), done.
From git://github.com/youruser/yourapp
bfbb16f..75737c6 master
-> origin/master
Updating bfbb16f..75737c6
Fast-forward
src/unit/engine/PhpunitTestEngine.php | 2 +src/workflow/ArcanistUnitWorkflow.php | 3 ++2 files changed, 3 insertions(+), 2 deletions(-)
Get another branch
•

Fetch all branches, checkout from origin

$ git fetch origin
$ git checkout -b feature/acme origin/feature/acme
remote: Counting objects: 18, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 11 (delta 8), reused 9 (delta 6)
Unpacking objects: 100% (11/11), done.
A few tools to make the process easier
github/hub
•

Wrapper that shortens git commands for
GitHub
GitHub for Mac
•

Yes, there is a GUI, but learn to use the CLI
Quick recap
•

We’re switching to git to improve the code
review process and ship better code more often

•

All code changes are done through pull requests
and reviewed by appropriate developers

•

Continuous integration testing framework
through Jenkins works in tandem with pull
requests
That’s it.

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Git Started With Git
Git Started With GitGit Started With Git
Git Started With Git
 
Introduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsIntroduction to Git Commands and Concepts
Introduction to Git Commands and Concepts
 
Git 101
Git 101Git 101
Git 101
 
Git
GitGit
Git
 
Git-flow workflow and pull-requests
Git-flow workflow and pull-requestsGit-flow workflow and pull-requests
Git-flow workflow and pull-requests
 
Git tutorial II
Git tutorial IIGit tutorial II
Git tutorial II
 
Git - An Introduction
Git - An IntroductionGit - An Introduction
Git - An Introduction
 
Git and GitHub workflows
Git and GitHub workflowsGit and GitHub workflows
Git and GitHub workflows
 
Git training v10
Git training v10Git training v10
Git training v10
 
Git basics to advance with diagrams
Git basics to advance with diagramsGit basics to advance with diagrams
Git basics to advance with diagrams
 
Git branching strategies
Git branching strategiesGit branching strategies
Git branching strategies
 
Git and github 101
Git and github 101Git and github 101
Git and github 101
 
Git workflows presentation
Git workflows presentationGit workflows presentation
Git workflows presentation
 
Git basic
Git basicGit basic
Git basic
 
Git workflows
Git workflowsGit workflows
Git workflows
 
Git collaboration
Git collaborationGit collaboration
Git collaboration
 
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
 
Route service-pcf-techmeetup
Route service-pcf-techmeetupRoute service-pcf-techmeetup
Route service-pcf-techmeetup
 
Git and git flow
Git and git flowGit and git flow
Git and git flow
 
An introduction to Git and GitFlow
An introduction to Git and GitFlowAn introduction to Git and GitFlow
An introduction to Git and GitFlow
 

Ähnlich wie Switching to Git

Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
Victor Wong
 
3 Git
3 Git3 Git

Ähnlich wie Switching to Git (20)

git Technologies
git Technologiesgit Technologies
git Technologies
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Dev, Staging & Production Workflow with Gitify (at MODXpo 2015 in Munich)
Dev, Staging & Production Workflow with Gitify (at MODXpo 2015 in Munich)Dev, Staging & Production Workflow with Gitify (at MODXpo 2015 in Munich)
Dev, Staging & Production Workflow with Gitify (at MODXpo 2015 in Munich)
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
 
Git
GitGit
Git
 
Git installation and configuration
Git installation and configurationGit installation and configuration
Git installation and configuration
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
 
Wokshop de Git
Wokshop de Git Wokshop de Git
Wokshop de Git
 
Git in a nutshell
Git in a nutshellGit in a nutshell
Git in a nutshell
 
Git Tech Talk
Git  Tech TalkGit  Tech Talk
Git Tech Talk
 
.Git for WordPress Developers
.Git for WordPress Developers.Git for WordPress Developers
.Git for WordPress Developers
 
Git hub
Git hubGit hub
Git hub
 
GIT in a nutshell
GIT in a nutshellGIT in a nutshell
GIT in a nutshell
 
Introducing Git and git flow
Introducing Git and git flow Introducing Git and git flow
Introducing Git and git flow
 
3 Git
3 Git3 Git
3 Git
 
Git session Dropsolid.com
Git session Dropsolid.comGit session Dropsolid.com
Git session Dropsolid.com
 
Git github
Git githubGit github
Git github
 
Git for developers
Git for developersGit for developers
Git for developers
 
Practical git for developers
Practical git for developersPractical git for developers
Practical git for developers
 

Kürzlich hochgeladen

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Switching to Git

  • 1. Switching to Git Using branches and pull requests
  • 3. Ship code that is ready for production often. • Build software that we are confident in shipping • Ship code more often to address needs • Become better developers through industry standard practices (with fewer bad habits)
  • 4. Three kinds of tasks ... • Features (Add or change marketable features) • Bugs (Fix issues reported by users and staff) • Hotfix (Fix very urgent issue with platform)
  • 5. But how often has this happened?
  • 6. Too much going on Release r100 Release r101 r102 r103
  • 7. What if we could ... Release Release r103 r100 Release Release r102 r101
  • 8. You could make this work with subversion • Create a branch for each task (feature, bug, hotfix) • Reintegrate / release in whatever order is needed • Slow process and lots of opportunity for errors.
  • 9. Turns out, we are not alone in having this issue ...
  • 10. ... and there’s already a (better/best) practice
  • 11. Most Important Slide™ • Anything in the master branch is deployable • To work on something new, create a descriptively named branch off of master (e.g. feature/new-oauth2-scopes) • Commit to that branch locally and regularly push your work to the same named branch on the server • When you need feedback or help, or you think the branch is ready for merging, open a pull request. • After someone else has reviewed and signed off on the feature, you can merge it into master • Once it is merged and pushed to master, you can and should deploy immediately Stolen from http://scottchacon.com/2011/08/31/github-flow.html
  • 12. What are git branches? • Files are blob objects in a database, stored in .git/ • A branch is really just a pointer to those objects • Switching branches is moving a pointer and replacing the files (milliseconds) • Transparent to the file system More on how it works at http://ftp.newartisans.com/pub/git.from.bottom.up.pdf
  • 13. What is master? • The production-ready branch • Not the same thing as /trunk, other than it is what all branches use as a parent • Git tags are created on code merged into master, and those are then deployed to production servers
  • 14. Clone the repository • Grab a copy of the repository (only once) $ cd ~/Sites/ $ git clone git@github.com/youruser/yourapp.git Cloning into ‘yourapp’ ...
  • 15. Create a branch • When you start a specific task, every time $ * $ $ * git branch -l master git checkout -b bug/5012-fix-oauth git branch -l bug/5012-fix-oauth master
  • 16. Make changes • Do the work, commit it (and amend if needed) $ git branch -l * bug/5012-fix-oauth master $ vim configuration/production.php $ git add configuration/production.php $ git commit -m “Fix OAuth secret for Twitter” $ vim configuration/production.php $ git add configuration/production.php $ git commit --amend -m “Fix OAuth secret for Twitter, fixes redmine #5012”
  • 17. Push branch commits • Push to a named branch in the repository $ git status # On branch bug/5012-fix-oauth nothing to commit, working directory clean $ git push origin bug/5012-fix-oauth Counting objects: 46, done. Delta compression using up to 4 threads. Compressing objects: 100% (22/22), done. Writing objects: 100% (24/24), 3.83 KiB | 0 bytes/s, done. Total 24 (delta 17), reused 8 (delta 1) To git@github.com:youruser/yourapp.git 06ff761..b3ea751 bug/5012-fix-oauth -> bug/5012-fix-oauth
  • 18. Open a pull request • A pull request is used for integration or feedback
  • 19. Discuss pull request, merge accepted • Each pull request is a candidate for inclusion in master, or at least a discussion about best approach • Even “good” pull requests might have multiple revisions • False starts happen – branches are “cheap”
  • 20. Continuous integration testing • Pull requests will trigger a Jenkins build job and add a contextual link to it within Github • A “build” is a snapshot of the repository at a particular commit that is run through a testing regimen • At minimum, committed files are run through linters and the results are reported back on the pull request via an API
  • 21. Cleaning up • Once a branch is merged, it can be deleted $ git branch --merged bug/5012-fix-oauth $ git branch --no-merge * master feature/top-secret $ git branch -d bug/5012-fix-oauth Deleted branch bug/5012-fix-oauth (was a705432).
  • 23. Not necessary Stolen from http://zachholman.com/talk/how-github-uses-github-to-build-github/
  • 25. Get upstream changes • Pick up changes in the master branch • Merge from another fork/branch of changes $ git pull origin master remote: Counting objects: 18, done. remote: Compressing objects: 100% (5/5), done. remote: Total 11 (delta 8), reused 9 (delta 6) Unpacking objects: 100% (11/11), done. From git://github.com/youruser/yourapp bfbb16f..75737c6 master -> origin/master Updating bfbb16f..75737c6 Fast-forward src/unit/engine/PhpunitTestEngine.php | 2 +src/workflow/ArcanistUnitWorkflow.php | 3 ++2 files changed, 3 insertions(+), 2 deletions(-)
  • 26. Get another branch • Fetch all branches, checkout from origin $ git fetch origin $ git checkout -b feature/acme origin/feature/acme remote: Counting objects: 18, done. remote: Compressing objects: 100% (5/5), done. remote: Total 11 (delta 8), reused 9 (delta 6) Unpacking objects: 100% (11/11), done.
  • 27. A few tools to make the process easier
  • 28. github/hub • Wrapper that shortens git commands for GitHub
  • 29. GitHub for Mac • Yes, there is a GUI, but learn to use the CLI
  • 30. Quick recap • We’re switching to git to improve the code review process and ship better code more often • All code changes are done through pull requests and reviewed by appropriate developers • Continuous integration testing framework through Jenkins works in tandem with pull requests