際際滷

際際滷Share a Scribd company logo
Git Going w/ Git
Michael Potter 
@hey__MP
So what is Git?
Git Going w/ Git
Why use version 
control?
Git Going w/ Git
So why Git?
Top four reasons 
Fast 
Popular 
Distributed 
Branching!
So how does it work 
exactly?
Basic Model 
 There is a Git repo that lives on a server 
 Developers can checkout the repo independently
Whats happening locally? 
 Every dev can fetch or pull 
down from the remote 
repo 
 Work on the files then add 
them to the staging area 
 Commit the staged files 
locally 
 Push the changes to the 
remote repo
So how does it handle 
workflow?
How about this for workflow?
Well get back to that 
later
Basic Commands
Initialize Repo 
 git init
Add files to stage 
 git add <filename or directory>
Commit to local repo 
 git commit -m <description>
Push to the remote repo
Branching
Branching = Workflow 
 Branching is a tool to build a workflow 
 Master is the only branch you start with 
 You can have as many or as little as you want
Basic workflow
Average workflow
Advanced workflow
Git-flow
Feature branches 
 Where the code is made 
 Examples of feature branch: 
 Calendar, Twitter Widget, New Article field 
 Feature branch could have multiple branches of 
of it (so meta)
Develop branch 
 Completed features are tested 
 Multiple features can be tested to see how they 
impact each other 
 Can be linked to a development server, often 
named integration server
Release branches 
 Collection of features that passed testing on the 
develop branch 
 Production ready code ready to be merged into 
master 
 Could be linked to a QA server
Hotfix 
 The Oh no branch 
 Branched directly off of master 
 Once fixed, its merged up to master and down to 
develop branch
Master 
 The projects live code 
 Only for merging!
Branching tips 
 Break down your work into different features with 
their own branch 
 Minimize merge conflicts by not editing the same 
file simultaneously with other developers
Lets talk Drupal!
Drupal config 
 Drupal 8 configuration is stored in .yml files 
 Drupal 7 configuration still lives in the database
So how are we supposed 
to commit configuration 
changes?
Features
Git Going w/ Git
Features workflow 
 On your dev environment create a new photo 
content type w/ three new fields and a gallery 
view. 
 Create a new feature called mywebsite_photos 
and export the content type, fields, and view. 
 Commit the new feature to your repo. 
 Deploy the changes to the live site and enable the 
feature.
Updating a feature 
Lets say a change has been made, a new field has 
been added to the content type and the view. 
1. Re-export the feature (Protip: drush fu <feature_name>) 
2. Deploy the change to the live site 
3. Revert the feature on the live site 
(Protip: drush fr <feature_name>)
Whoa, thats cool
How many features 
should I have? 
Thats up to you!
Features methodology #1 
 News Section 
 Courses Section 
 Events Section 
 Homepage 
 Sitewide Defaults
Features methodology #2 
 Content Types 
 Context 
 Field Bases 
 Media Config 
 Pathauto 
 Rules 
 Site config 
 Taxonomy 
 User Config 
 Views 
 XML Sitemap
Critical feature helpers 
 Strongarm (drupal.org/strongarm) 
 Diff (drupal.org/diff) 
 Features Override (drupal.org/features_override) 
 Drush!
Demo

More Related Content

What's hot (20)

Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overviewGit and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Rueful Robin
Introducing GitLab (June 2018)
Introducing GitLab (June 2018)Introducing GitLab (June 2018)
Introducing GitLab (June 2018)
Noa Harel
GitHub Talk - Cody Carnachan
GitHub Talk - Cody CarnachanGitHub Talk - Cody Carnachan
GitHub Talk - Cody Carnachan
Cody Carnachan
GitLab 8.6 - Release Webcast
GitLab 8.6 - Release Webcast GitLab 8.6 - Release Webcast
GitLab 8.6 - Release Webcast
GitLab, Inc
What's New in GitLab and Software Development Trends
What's New in GitLab and Software Development TrendsWhat's New in GitLab and Software Development Trends
What's New in GitLab and Software Development Trends
Noa Harel
Up GitLab Presentation 2015
Up GitLab Presentation 2015Up GitLab Presentation 2015
Up GitLab Presentation 2015
Kumaran Balachandran
GitLab webcast - Release 8.4
GitLab webcast - Release 8.4GitLab webcast - Release 8.4
GitLab webcast - Release 8.4
GitLab, Inc
Intro to git and git hub
Intro to git and git hubIntro to git and git hub
Intro to git and git hub
JasleenSondhi
Git & GitLab
Git & GitLabGit & GitLab
Git & GitLab
Gaurav Wable
GitHub
GitHubGitHub
GitHub
ThomasLai27
Git Lab Introduction
Git Lab IntroductionGit Lab Introduction
Git Lab Introduction
Krunal Doshi
Git and GitGHub Basics
Git and GitGHub BasicsGit and GitGHub Basics
Git and GitGHub Basics
Aswin Barath
Zero-Downtime Gerrit Code Review Upgrade
Zero-Downtime Gerrit Code Review UpgradeZero-Downtime Gerrit Code Review Upgrade
Zero-Downtime Gerrit Code Review Upgrade
Luca Milanesio
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
Pedro Moreira da Silva
Stable master workflow with Gerrit Code Review
Stable master workflow with Gerrit Code ReviewStable master workflow with Gerrit Code Review
Stable master workflow with Gerrit Code Review
Luca Milanesio
Introducing GitLab (September 2018)
Introducing GitLab (September 2018)Introducing GitLab (September 2018)
Introducing GitLab (September 2018)
Noa Harel
Getting Started with GitHub
Getting Started with GitHubGetting Started with GitHub
Getting Started with GitHub
Michael Redlich
GerritHub.io - present, past, future
GerritHub.io - present, past, futureGerritHub.io - present, past, future
GerritHub.io - present, past, future
Luca Milanesio
Introduction to Git and GitHub Part 2
Introduction to Git and GitHub Part 2Introduction to Git and GitHub Part 2
Introduction to Git and GitHub Part 2
Omar Fathy
Gerrit Code Review Analytics
Gerrit Code Review AnalyticsGerrit Code Review Analytics
Gerrit Code Review Analytics
Luca Milanesio
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overviewGit and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Rueful Robin
Introducing GitLab (June 2018)
Introducing GitLab (June 2018)Introducing GitLab (June 2018)
Introducing GitLab (June 2018)
Noa Harel
GitHub Talk - Cody Carnachan
GitHub Talk - Cody CarnachanGitHub Talk - Cody Carnachan
GitHub Talk - Cody Carnachan
Cody Carnachan
GitLab 8.6 - Release Webcast
GitLab 8.6 - Release Webcast GitLab 8.6 - Release Webcast
GitLab 8.6 - Release Webcast
GitLab, Inc
What's New in GitLab and Software Development Trends
What's New in GitLab and Software Development TrendsWhat's New in GitLab and Software Development Trends
What's New in GitLab and Software Development Trends
Noa Harel
GitLab webcast - Release 8.4
GitLab webcast - Release 8.4GitLab webcast - Release 8.4
GitLab webcast - Release 8.4
GitLab, Inc
Intro to git and git hub
Intro to git and git hubIntro to git and git hub
Intro to git and git hub
JasleenSondhi
Git Lab Introduction
Git Lab IntroductionGit Lab Introduction
Git Lab Introduction
Krunal Doshi
Git and GitGHub Basics
Git and GitGHub BasicsGit and GitGHub Basics
Git and GitGHub Basics
Aswin Barath
Zero-Downtime Gerrit Code Review Upgrade
Zero-Downtime Gerrit Code Review UpgradeZero-Downtime Gerrit Code Review Upgrade
Zero-Downtime Gerrit Code Review Upgrade
Luca Milanesio
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)
Pedro Moreira da Silva
Stable master workflow with Gerrit Code Review
Stable master workflow with Gerrit Code ReviewStable master workflow with Gerrit Code Review
Stable master workflow with Gerrit Code Review
Luca Milanesio
Introducing GitLab (September 2018)
Introducing GitLab (September 2018)Introducing GitLab (September 2018)
Introducing GitLab (September 2018)
Noa Harel
Getting Started with GitHub
Getting Started with GitHubGetting Started with GitHub
Getting Started with GitHub
Michael Redlich
GerritHub.io - present, past, future
GerritHub.io - present, past, futureGerritHub.io - present, past, future
GerritHub.io - present, past, future
Luca Milanesio
Introduction to Git and GitHub Part 2
Introduction to Git and GitHub Part 2Introduction to Git and GitHub Part 2
Introduction to Git and GitHub Part 2
Omar Fathy
Gerrit Code Review Analytics
Gerrit Code Review AnalyticsGerrit Code Review Analytics
Gerrit Code Review Analytics
Luca Milanesio

Similar to Git Going w/ Git (20)

Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdfAzure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
ManhHoangVan
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Ahmed El-Arabawy
Managing changes to eZPublish Database
Managing changes to eZPublish DatabaseManaging changes to eZPublish Database
Managing changes to eZPublish Database
Gaetano Giunta
Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...
eZ Systems
Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?
Bruno Capuano
CUST-2 New Client Configuration & Extension Points in Share
CUST-2 New Client Configuration & Extension Points in ShareCUST-2 New Client Configuration & Extension Points in Share
CUST-2 New Client Configuration & Extension Points in Share
Alfresco Software
Tech Talk Live on Share Extensibility
Tech Talk Live on Share ExtensibilityTech Talk Live on Share Extensibility
Tech Talk Live on Share Extensibility
Alfresco Software
SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps Jumpstart
Ori Donner
Collaborative development with git
Collaborative development with gitCollaborative development with git
Collaborative development with git
Joseluis Laso
They why behind php frameworks
They why behind php frameworksThey why behind php frameworks
They why behind php frameworks
Kirk Madera
Introduction to github slideshare
Introduction to github slideshareIntroduction to github slideshare
Introduction to github slideshare
Rakesh Sukumar
git Technologies
git Technologiesgit Technologies
git Technologies
Hirantha Pradeep
Git workflows
Git workflowsGit workflows
Git workflows
Xpand IT
Drupal 8 deeper dive
Drupal 8 deeper diveDrupal 8 deeper dive
Drupal 8 deeper dive
Amazee Labs
The Art & Zen of Managing Nagios with Puppet
The Art & Zen of Managing Nagios with PuppetThe Art & Zen of Managing Nagios with Puppet
The Art & Zen of Managing Nagios with Puppet
VictorOps
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)
Mark Hamstra
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
camp_drupal_ua
Untangling - fall2017 - week 9
Untangling - fall2017 - week 9Untangling - fall2017 - week 9
Untangling - fall2017 - week 9
Derek Jacoby
Mini-training: Lets Git It!
Mini-training: Lets Git It!Mini-training: Lets Git It!
Mini-training: Lets Git It!
Betclic Everest Group Tech Team
GIT In Detail
GIT In DetailGIT In Detail
GIT In Detail
Haitham Raik
Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdfAzure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
Azure DevOfsdfsdfsfasfsdfasfsdfsdfsdps.pdf
ManhHoangVan
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Ahmed El-Arabawy
Managing changes to eZPublish Database
Managing changes to eZPublish DatabaseManaging changes to eZPublish Database
Managing changes to eZPublish Database
Gaetano Giunta
Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...
eZ Systems
Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?
Bruno Capuano
CUST-2 New Client Configuration & Extension Points in Share
CUST-2 New Client Configuration & Extension Points in ShareCUST-2 New Client Configuration & Extension Points in Share
CUST-2 New Client Configuration & Extension Points in Share
Alfresco Software
Tech Talk Live on Share Extensibility
Tech Talk Live on Share ExtensibilityTech Talk Live on Share Extensibility
Tech Talk Live on Share Extensibility
Alfresco Software
SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps Jumpstart
Ori Donner
Collaborative development with git
Collaborative development with gitCollaborative development with git
Collaborative development with git
Joseluis Laso
They why behind php frameworks
They why behind php frameworksThey why behind php frameworks
They why behind php frameworks
Kirk Madera
Introduction to github slideshare
Introduction to github slideshareIntroduction to github slideshare
Introduction to github slideshare
Rakesh Sukumar
Git workflows
Git workflowsGit workflows
Git workflows
Xpand IT
Drupal 8 deeper dive
Drupal 8 deeper diveDrupal 8 deeper dive
Drupal 8 deeper dive
Amazee Labs
The Art & Zen of Managing Nagios with Puppet
The Art & Zen of Managing Nagios with PuppetThe Art & Zen of Managing Nagios with Puppet
The Art & Zen of Managing Nagios with Puppet
VictorOps
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)
Mark Hamstra
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
camp_drupal_ua
Untangling - fall2017 - week 9
Untangling - fall2017 - week 9Untangling - fall2017 - week 9
Untangling - fall2017 - week 9
Derek Jacoby

Recently uploaded (20)

Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh ThakurComplete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Hackopedia Utkarsh Thakur
Blue Simple Professional CV Resume (2).pdf
Blue Simple Professional CV Resume (2).pdfBlue Simple Professional CV Resume (2).pdf
Blue Simple Professional CV Resume (2).pdf
deepakpendbhaje
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdfThe-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
makelinkak002
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgdipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
zmulani8
The Evolution of Home Security from Cameras to Smart Systems.pdf
The Evolution of Home Security from Cameras to Smart Systems.pdfThe Evolution of Home Security from Cameras to Smart Systems.pdf
The Evolution of Home Security from Cameras to Smart Systems.pdf
Internet Bundle Now
DB.pptx data base HNS level III 2017 yearx
DB.pptx data base HNS level III 2017 yearxDB.pptx data base HNS level III 2017 yearx
DB.pptx data base HNS level III 2017 yearx
kebimesay23
Expert Odoo Support Services .pdf
Expert Odoo Support Services         .pdfExpert Odoo Support Services         .pdf
Expert Odoo Support Services .pdf
dela33martin33
Hire Odoo Consultant .pdf
Hire Odoo Consultant                .pdfHire Odoo Consultant                .pdf
Hire Odoo Consultant .pdf
dela33martin33
Scope of Work by 際際滷sgo.pptx by school
Scope of Work by 際際滷sgo.pptx by schoolScope of Work by 際際滷sgo.pptx by school
Scope of Work by 際際滷sgo.pptx by school
larasgm2002
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
Steven McGee
SITUS GACOR TERPERCAYA - KAJIAN4D!
 SITUS GACOR TERPERCAYA - KAJIAN4D!  SITUS GACOR TERPERCAYA - KAJIAN4D!
SITUS GACOR TERPERCAYA - KAJIAN4D!
KAJIAN4D
D 1.2 TYPES OF NETWORKS.ppt. for computer
D 1.2 TYPES OF NETWORKS.ppt. for computerD 1.2 TYPES OF NETWORKS.ppt. for computer
D 1.2 TYPES OF NETWORKS.ppt. for computer
ramniwaskukna874
Odoo Project Management .pdf
Odoo Project Management             .pdfOdoo Project Management             .pdf
Odoo Project Management .pdf
dela33martin33
Generative artificial intelligence in EU Grant Writing
Generative artificial intelligence in EU Grant WritingGenerative artificial intelligence in EU Grant Writing
Generative artificial intelligence in EU Grant Writing
Peter Trkman
Odoo demo .pdf
Odoo demo                           .pdfOdoo demo                           .pdf
Odoo demo .pdf
dela33martin33
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdfESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
HELLEN CRISTINA
Chapter-2-NSA_Network System Administration.pdf
Chapter-2-NSA_Network System Administration.pdfChapter-2-NSA_Network System Administration.pdf
Chapter-2-NSA_Network System Administration.pdf
AssefaSen
DT Presentation[1].pptxeffsffewfwefewfewefefeef
DT Presentation[1].pptxeffsffewfwefewfewefefeefDT Presentation[1].pptxeffsffewfwefewfewefefeef
DT Presentation[1].pptxeffsffewfwefewfewefefeef
dipanshu1721
BGP Best Practices, presented by Imtiaz Sajid
BGP Best Practices, presented by Imtiaz SajidBGP Best Practices, presented by Imtiaz Sajid
BGP Best Practices, presented by Imtiaz Sajid
APNIC
IETF 122: draft-ietf-regext-rdap-rir-search-16
IETF 122: draft-ietf-regext-rdap-rir-search-16IETF 122: draft-ietf-regext-rdap-rir-search-16
IETF 122: draft-ietf-regext-rdap-rir-search-16
APNIC
Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh ThakurComplete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Complete Nmap Scanning Commands CheatSheet by Hackopedia Utkarsh Thakur
Hackopedia Utkarsh Thakur
Blue Simple Professional CV Resume (2).pdf
Blue Simple Professional CV Resume (2).pdfBlue Simple Professional CV Resume (2).pdf
Blue Simple Professional CV Resume (2).pdf
deepakpendbhaje
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdfThe-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
The-Power-of-Digital-Marketing-Fueling-Business-Growth.pdf
makelinkak002
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgdipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
ipsec.pdfgvdgvdgdgdgddgdgdgdgdgdgdgdgdgd
zmulani8
The Evolution of Home Security from Cameras to Smart Systems.pdf
The Evolution of Home Security from Cameras to Smart Systems.pdfThe Evolution of Home Security from Cameras to Smart Systems.pdf
The Evolution of Home Security from Cameras to Smart Systems.pdf
Internet Bundle Now
DB.pptx data base HNS level III 2017 yearx
DB.pptx data base HNS level III 2017 yearxDB.pptx data base HNS level III 2017 yearx
DB.pptx data base HNS level III 2017 yearx
kebimesay23
Expert Odoo Support Services .pdf
Expert Odoo Support Services         .pdfExpert Odoo Support Services         .pdf
Expert Odoo Support Services .pdf
dela33martin33
Hire Odoo Consultant .pdf
Hire Odoo Consultant                .pdfHire Odoo Consultant                .pdf
Hire Odoo Consultant .pdf
dela33martin33
Scope of Work by 際際滷sgo.pptx by school
Scope of Work by 際際滷sgo.pptx by schoolScope of Work by 際際滷sgo.pptx by school
Scope of Work by 際際滷sgo.pptx by school
larasgm2002
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
際際滷s: Eco Economic Epochs World Game's Great Redesign .pdf
Steven McGee
SITUS GACOR TERPERCAYA - KAJIAN4D!
 SITUS GACOR TERPERCAYA - KAJIAN4D!  SITUS GACOR TERPERCAYA - KAJIAN4D!
SITUS GACOR TERPERCAYA - KAJIAN4D!
KAJIAN4D
D 1.2 TYPES OF NETWORKS.ppt. for computer
D 1.2 TYPES OF NETWORKS.ppt. for computerD 1.2 TYPES OF NETWORKS.ppt. for computer
D 1.2 TYPES OF NETWORKS.ppt. for computer
ramniwaskukna874
Odoo Project Management .pdf
Odoo Project Management             .pdfOdoo Project Management             .pdf
Odoo Project Management .pdf
dela33martin33
Generative artificial intelligence in EU Grant Writing
Generative artificial intelligence in EU Grant WritingGenerative artificial intelligence in EU Grant Writing
Generative artificial intelligence in EU Grant Writing
Peter Trkman
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdfESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
ESTUDO DO ARTIGO 22 AO 39 DO CDIGO CVIL.pdf
HELLEN CRISTINA
Chapter-2-NSA_Network System Administration.pdf
Chapter-2-NSA_Network System Administration.pdfChapter-2-NSA_Network System Administration.pdf
Chapter-2-NSA_Network System Administration.pdf
AssefaSen
DT Presentation[1].pptxeffsffewfwefewfewefefeef
DT Presentation[1].pptxeffsffewfwefewfewefefeefDT Presentation[1].pptxeffsffewfwefewfewefefeef
DT Presentation[1].pptxeffsffewfwefewfewefefeef
dipanshu1721
BGP Best Practices, presented by Imtiaz Sajid
BGP Best Practices, presented by Imtiaz SajidBGP Best Practices, presented by Imtiaz Sajid
BGP Best Practices, presented by Imtiaz Sajid
APNIC
IETF 122: draft-ietf-regext-rdap-rir-search-16
IETF 122: draft-ietf-regext-rdap-rir-search-16IETF 122: draft-ietf-regext-rdap-rir-search-16
IETF 122: draft-ietf-regext-rdap-rir-search-16
APNIC

Git Going w/ Git

  • 3. So what is Git?
  • 5. Why use version control?
  • 8. Top four reasons Fast Popular Distributed Branching!
  • 9. So how does it work exactly?
  • 10. Basic Model There is a Git repo that lives on a server Developers can checkout the repo independently
  • 11. Whats happening locally? Every dev can fetch or pull down from the remote repo Work on the files then add them to the staging area Commit the staged files locally Push the changes to the remote repo
  • 12. So how does it handle workflow?
  • 13. How about this for workflow?
  • 14. Well get back to that later
  • 16. Initialize Repo git init
  • 17. Add files to stage git add <filename or directory>
  • 18. Commit to local repo git commit -m <description>
  • 19. Push to the remote repo
  • 21. Branching = Workflow Branching is a tool to build a workflow Master is the only branch you start with You can have as many or as little as you want
  • 26. Feature branches Where the code is made Examples of feature branch: Calendar, Twitter Widget, New Article field Feature branch could have multiple branches of of it (so meta)
  • 27. Develop branch Completed features are tested Multiple features can be tested to see how they impact each other Can be linked to a development server, often named integration server
  • 28. Release branches Collection of features that passed testing on the develop branch Production ready code ready to be merged into master Could be linked to a QA server
  • 29. Hotfix The Oh no branch Branched directly off of master Once fixed, its merged up to master and down to develop branch
  • 30. Master The projects live code Only for merging!
  • 31. Branching tips Break down your work into different features with their own branch Minimize merge conflicts by not editing the same file simultaneously with other developers
  • 33. Drupal config Drupal 8 configuration is stored in .yml files Drupal 7 configuration still lives in the database
  • 34. So how are we supposed to commit configuration changes?
  • 37. Features workflow On your dev environment create a new photo content type w/ three new fields and a gallery view. Create a new feature called mywebsite_photos and export the content type, fields, and view. Commit the new feature to your repo. Deploy the changes to the live site and enable the feature.
  • 38. Updating a feature Lets say a change has been made, a new field has been added to the content type and the view. 1. Re-export the feature (Protip: drush fu <feature_name>) 2. Deploy the change to the live site 3. Revert the feature on the live site (Protip: drush fr <feature_name>)
  • 40. How many features should I have? Thats up to you!
  • 41. Features methodology #1 News Section Courses Section Events Section Homepage Sitewide Defaults
  • 42. Features methodology #2 Content Types Context Field Bases Media Config Pathauto Rules Site config Taxonomy User Config Views XML Sitemap
  • 43. Critical feature helpers Strongarm (drupal.org/strongarm) Diff (drupal.org/diff) Features Override (drupal.org/features_override) Drush!
  • 44. Demo