SlideShare ist ein Scribd-Unternehmen logo
1 von 46
Adnan Smajlovic
Big Cloud Solutions – DevOps Advisory
Git
Introduction and Overview
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Git repositories are not linear
– Branching already supported
•Branches are trees of trees
•Visualise
– The state of your repository as a point in a high-
dimensional „code-space‟
– Branches are represented as n-dimensional
membranes
– Map the spatial loci of successive commits onto the
projected manifold of each cloned repository
The Simple Stuff
2
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
3
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Git satire
– A Guide to Git using spatial analogies
• http://tartley.com/?p=1267
• “Tartley, you‟re one sick puppy”
Just Kidding
4
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Scope
•Background
•Features
•Services
– Github
– GitLab
– Bitbucket
•Resources
•Q&A
Agenda
5
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Scope
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Purpose
– Introduce distributed version control concept
– Generate some Git interest
• Depending on use will lead to:
– awe
– fear
– hate
– suffering
• Pass on the stories, don‟t be „that‟ guy
– Some useful concepts
• Branch, merge, rebase, amend
Scope
7
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•This is not a…
– Git tutorial
• Plenty of resources out there
– See „Resources‟ section
• Service providers and projects vary
• That said…
– If there is enough interest
• Perhaps a fully-fledged „enabler‟ tech night
• “Dude, what the hell is Jenkins and how do I integrate Git
with it?”
• What is this Selenium and SauceLabs business about?”
Scope
8
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•This is not a…
– GitHub tutorial
• There are alternatives
Scope
9
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Background
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Record changes to resources
– Not limited to software code
• e.g. Wiki article versioning
•Recall specific versions
– Revert to previous state
• File
• Image
• Project
•Tracking
– Revision numbers (e.g. 1.0.1, r3893, etc.)
Version Control - What
11
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Local
– Copy to another directory
– Patching mechanism
• Recovery based on revision sets
• “It‟s so simple” (!)
– What if?
• Forget where it is stored
• Overwrite wrong file
• Database is corrupted
• Datacentre blows up
Version Control - How
12
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Centralised
– Collaborator count > 1
– Client-server model
– Due diligence
• Auditing capabilities
– Access control
– What if?
• Network connection has high latency
• Server fails
• Datacentre blows up
Version Control - How
13
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Distributed
– Full mirror
• Clients can restore content to server
• Every copy is a backup
– Hierarchy options
• Cross-system collaboration
– What if?
• Attempt to break it
• Datacentre blo…oh, wait
Version Control - How
14
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Version Control - Who
15
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Linux kernel developers abandoned BitKeeper
– BitMover alleges reverse-engineering of protocols
– Withdraws free use
•Linus Torvalds sets out to write one
– Existing systems do not meet requirements
•Emphasis on speed
– Patch the Linux kernel tree at a set rate
•Avoid conventional approaches
– Do the opposite of what CVS did
– Name it „git‟ – Torvalds refers to himself as one (!)
Birth of Git
16
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Features
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
18
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Distributed Version Control System (DVCS)
– Fast version control
– Cheap local branching
– Easy to learn
•Arguable – some experience required to leverage the more
useful features
– Influenced by BitKeeper and Monotone concepts
•Source Code Management (SCM) principles
– Change identification via „revision number‟
• Keep an eye out for those alphanumeric strings…
Git Features
19
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Some goals
– Fast
• Must handle patching of the Linux kernel source/tree
– Fully distributed
• In case the datacentre blows up
– Simple design
• Compatibility with existing systems and protocols
– Strong non-linear development orientation
• Rapid branching and merging
• Thousands of parallel branches
Git Features
20
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Snapshots
Git Features
21
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•“Think locally not globally (!)”
– Most operations require local files/resources only
•Integrity
– Checksum all the things
•Generally only add data (apologies to Bruce Lee)
– Almost everything has an undo action
•The Three States
– Committed
– Modified
– Staged
Git Features
22
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
23
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Diverge and fix (or break) stuff
•Main line of development unaffected
•Cheap to use branches
– Writing 41 bytes to a file
– Old school methods used to copy everything :-/
•Basic merge process
– Identify best common ancestor
– Three-way merge (new snapshot)
– Merged work in a new commit object
Good to Know - Branch
24
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Branch
25
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Branch
26
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Branch
27
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Branch
28
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Things do not always go smoothly
•Merge a branch with the master
– Same object changed in multiple branches
– Attempt to merge leads to conflict
– „git status‟ shows the list of unmerged objects
– Conflicts are marked
•Pick the one you want
Good to Know - Conflicts
29
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
<<<<<<< HEAD:somefile.ext
Go away!
=======
Please go away!
>>>>>>> mybranch:somefile.ext
Good to Know - Conflicts
30
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Effectively – patching
•Process
– Grab a diff of each commit
– Store in temp files
– Reset current branch as rebase target
– Apply changes in turn
•Just one rule to remember
– “Do not rebase commits that you have pushed to a
public repository”
Good to Know - Rebase
31
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Rebase
32
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Rebase
33
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Good to Know - Rebase
34
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Rewrite history every once in a while
•“Dude, I don‟t want to look like an idiot”
•„git commit --amend‟
– Change the commit message
– Add or remove objects
•This is a mini-rebase
– Keep the perils of rebasing in mind
Good to Know - Amend
35
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Fork a repo
•Track changes in parent repo („git remote‟)
– Commits can be quickly pulled back into the fork
•Create a branch in the fork („git branch)
– Keeps the forked repo clean (see previous point)
•Modify branch and push back („git push‟)
•Test your changes
– Generally recommended unless you take rejection well
•Pull request to parent repo from your branch
Good Practice
36
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Services
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•May be referred to as “Git as a Service”
•Generally public and private repositories
•May offer multiple SCM offerings
•Additional services
– Code review
– Issue tracking
– Wiki
GaaS for the Masses
38
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Most popular source code repo site
– Social networking concepts
•Public and private repos
•Free (well…)
– Up to a point
– No private repos for the free plan
•Enterprise offering available
– Bring GitHub to your own servers
– Rackspace makes use of it
– Not exactly cheap (!)
GitHub
39
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Source code in GitHub o_0
•Free (kind of…)
– Self-hosted – you still need a server to run it on
•GitLab Cloud
– Hosted GitLab
– Unlimited private repos (10 users)
•GitLab CI
– Almost-native CI service
GitLab
40
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•Free (almost…)
– Up to 5 users
•Unlimited private repos
•Offers Mercurial support
– Start-up that was acquired
– Atlassian introduced Git support in 2011
•Enterprise offering available
– Cheaper than GitHub (at the time of writing)
•“Built for JIRA”
– Stick a #resolve in your commit message
Bitbucket
41
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Resources
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•The Git SCM book
– From the horses mouth
– Thank you for the images used in this deck
– http://git-scm.com/book
•Vogella Git Tutorial
– Lars Vogel
– http://vogella.com/articles/Git/
•Git for computer scientists
– If you‟re all about pointers
–http://eagain.net/articles/git-for-computer-scientists/
Resources
43
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
•The Git SCM tutorial
– http://git-scm.com/docs/gittutorial
•Six Revisions tutorials
–http://sixrevisions.com/resources/git-tutorials-beginners/
•Code School tutorial
– Try Git
– http://try.github.io/
Resources
44
RACKSPACE® HOSTING | WWW.RACKSPACE.COM
Questions?
46
RACKSPACE® HOSTING | © RACKSPACE US, INC. | RACKSPACE® AND FANATICAL SUPPORT® ARE SERVICE MARKS OF RACKSPACE US, INC. REGISTERED IN TH E UNITED STATES AND OTHER COUNTRIES. | WWW.RACKSPACE.CO.UK
RACKSPACE® HOSTING | 5 MILLINGTON ROAD | HAYES, UNITED KINGDOM UB3 4AZ
UK SALES: +44 (0)20 8712 6507 | UK SUPPORT: 0800 988 0300 | WWW.RACKSPACE.CO.UK

Weitere ähnliche Inhalte

Was ist angesagt?

MHA: Getting started & moving past quirks percona live santa clara 2013
MHA: Getting started & moving past quirks percona live santa clara 2013MHA: Getting started & moving past quirks percona live santa clara 2013
MHA: Getting started & moving past quirks percona live santa clara 2013
Colin Charles
 
Control the Clouds - Developer Experience with jclouds.pptx
Control the Clouds - Developer Experience with jclouds.pptxControl the Clouds - Developer Experience with jclouds.pptx
Control the Clouds - Developer Experience with jclouds.pptx
OpenStack Foundation
 
I A+ Open+ Source+ Secret+ Sauce
I A+ Open+ Source+ Secret+ SauceI A+ Open+ Source+ Secret+ Sauce
I A+ Open+ Source+ Secret+ Sauce
guest1babda
 

Was ist angesagt? (20)

MariaDB 10.1 what's new and what's coming in 10.2 - Tokyo MariaDB Meetup
MariaDB 10.1   what's new and what's coming in 10.2 - Tokyo MariaDB MeetupMariaDB 10.1   what's new and what's coming in 10.2 - Tokyo MariaDB Meetup
MariaDB 10.1 what's new and what's coming in 10.2 - Tokyo MariaDB Meetup
 
The MySQL Server ecosystem in 2016
The MySQL Server ecosystem in 2016The MySQL Server ecosystem in 2016
The MySQL Server ecosystem in 2016
 
Meet MariaDB Server 10.1 London MySQL meetup December 2015
Meet MariaDB Server 10.1 London MySQL meetup December 2015Meet MariaDB Server 10.1 London MySQL meetup December 2015
Meet MariaDB Server 10.1 London MySQL meetup December 2015
 
The Complete MariaDB Server Tutorial - Percona Live 2015
The Complete MariaDB Server Tutorial - Percona Live 2015The Complete MariaDB Server Tutorial - Percona Live 2015
The Complete MariaDB Server Tutorial - Percona Live 2015
 
MariaDB - the "new" MySQL is 5 years old and everywhere (LinuxCon Europe 2015)
MariaDB - the "new" MySQL is 5 years old and everywhere (LinuxCon Europe 2015)MariaDB - the "new" MySQL is 5 years old and everywhere (LinuxCon Europe 2015)
MariaDB - the "new" MySQL is 5 years old and everywhere (LinuxCon Europe 2015)
 
My first moments with MongoDB
My first moments with MongoDBMy first moments with MongoDB
My first moments with MongoDB
 
MariaDB 10 Tutorial - 13.11.11 - Percona Live London
MariaDB 10 Tutorial - 13.11.11 - Percona Live LondonMariaDB 10 Tutorial - 13.11.11 - Percona Live London
MariaDB 10 Tutorial - 13.11.11 - Percona Live London
 
MariaDB Server & MySQL Security Essentials 2016
MariaDB Server & MySQL Security Essentials 2016MariaDB Server & MySQL Security Essentials 2016
MariaDB Server & MySQL Security Essentials 2016
 
MySQL in the Hosted Cloud - Percona Live 2015
MySQL in the Hosted Cloud - Percona Live 2015MySQL in the Hosted Cloud - Percona Live 2015
MySQL in the Hosted Cloud - Percona Live 2015
 
MHA: Getting started & moving past quirks percona live santa clara 2013
MHA: Getting started & moving past quirks percona live santa clara 2013MHA: Getting started & moving past quirks percona live santa clara 2013
MHA: Getting started & moving past quirks percona live santa clara 2013
 
Rails - getting started
Rails - getting startedRails - getting started
Rails - getting started
 
Essential Camel Components
Essential Camel ComponentsEssential Camel Components
Essential Camel Components
 
Ansible for large scale deployment
Ansible for large scale deploymentAnsible for large scale deployment
Ansible for large scale deployment
 
Why MariaDB?
Why MariaDB?Why MariaDB?
Why MariaDB?
 
Control the Clouds - Developer Experience with jclouds.pptx
Control the Clouds - Developer Experience with jclouds.pptxControl the Clouds - Developer Experience with jclouds.pptx
Control the Clouds - Developer Experience with jclouds.pptx
 
MariaDB: The 2012 Edition
MariaDB: The 2012 EditionMariaDB: The 2012 Edition
MariaDB: The 2012 Edition
 
Better encryption & security with MariaDB 10.1 & MySQL 5.7
Better encryption & security with MariaDB 10.1 & MySQL 5.7Better encryption & security with MariaDB 10.1 & MySQL 5.7
Better encryption & security with MariaDB 10.1 & MySQL 5.7
 
VMworld 2013: Virtualizing Mission Critical Oracle RAC with vSphere and vCOPS
VMworld 2013: Virtualizing Mission Critical Oracle RAC with vSphere and vCOPSVMworld 2013: Virtualizing Mission Critical Oracle RAC with vSphere and vCOPS
VMworld 2013: Virtualizing Mission Critical Oracle RAC with vSphere and vCOPS
 
I A+ Open+ Source+ Secret+ Sauce
I A+ Open+ Source+ Secret+ SauceI A+ Open+ Source+ Secret+ Sauce
I A+ Open+ Source+ Secret+ Sauce
 
Lessons from database failures
Lessons from database failuresLessons from database failures
Lessons from database failures
 

Andere mochten auch (7)

Git Introduction
Git IntroductionGit Introduction
Git Introduction
 
Git Memento of basic commands
Git Memento of basic commandsGit Memento of basic commands
Git Memento of basic commands
 
Basic Git commands
Basic Git commandsBasic Git commands
Basic Git commands
 
git command
git commandgit command
git command
 
Basics About Git & GitHub
Basics About Git & GitHubBasics About Git & GitHub
Basics About Git & GitHub
 
Version control system
Version control systemVersion control system
Version control system
 
A practical approach to version control for SQL Server - By Steve Jones
A practical approach to version control for SQL Server - By Steve JonesA practical approach to version control for SQL Server - By Steve Jones
A practical approach to version control for SQL Server - By Steve Jones
 

Ähnlich wie Git - Introduction and Overview

Performance_Out.pptx
Performance_Out.pptxPerformance_Out.pptx
Performance_Out.pptx
sanjanabal
 
Performance out
Performance outPerformance out
Performance out
Jack Huang
 
Performance out
Performance outPerformance out
Performance out
Jack Huang
 
Performance out
Performance outPerformance out
Performance out
Jack Huang
 
Performance out
Performance outPerformance out
Performance out
Jack Huang
 
Intro to Big Data and NoSQL
Intro to Big Data and NoSQLIntro to Big Data and NoSQL
Intro to Big Data and NoSQL
Don Demcsak
 
Testing at-cloud-speed sans-app-sec-austin-2013
Testing at-cloud-speed sans-app-sec-austin-2013Testing at-cloud-speed sans-app-sec-austin-2013
Testing at-cloud-speed sans-app-sec-austin-2013
Matt Tesauro
 

Ähnlich wie Git - Introduction and Overview (20)

Performance out
Performance outPerformance out
Performance out
 
Apache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling OutApache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling Out
 
Performance_Out.pptx
Performance_Out.pptxPerformance_Out.pptx
Performance_Out.pptx
 
2 7
2 72 7
2 7
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
title
titletitle
title
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Intro to Big Data and NoSQL
Intro to Big Data and NoSQLIntro to Big Data and NoSQL
Intro to Big Data and NoSQL
 
ActiveMQ 5.9.x new features
ActiveMQ 5.9.x new featuresActiveMQ 5.9.x new features
ActiveMQ 5.9.x new features
 
Performance Tuning RocksDB for Kafka Streams’ State Stores
Performance Tuning RocksDB for Kafka Streams’ State StoresPerformance Tuning RocksDB for Kafka Streams’ State Stores
Performance Tuning RocksDB for Kafka Streams’ State Stores
 
Performance out
Performance outPerformance out
Performance out
 
Testing at-cloud-speed sans-app-sec-austin-2013
Testing at-cloud-speed sans-app-sec-austin-2013Testing at-cloud-speed sans-app-sec-austin-2013
Testing at-cloud-speed sans-app-sec-austin-2013
 
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
 

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+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@
 

Kürzlich hochgeladen (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
+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...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
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
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
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
 
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, ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 

Git - Introduction and Overview

  • 1. Adnan Smajlovic Big Cloud Solutions – DevOps Advisory Git Introduction and Overview
  • 2. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Git repositories are not linear – Branching already supported •Branches are trees of trees •Visualise – The state of your repository as a point in a high- dimensional „code-space‟ – Branches are represented as n-dimensional membranes – Map the spatial loci of successive commits onto the projected manifold of each cloned repository The Simple Stuff 2
  • 3. RACKSPACE® HOSTING | WWW.RACKSPACE.COM 3
  • 4. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Git satire – A Guide to Git using spatial analogies • http://tartley.com/?p=1267 • “Tartley, you‟re one sick puppy” Just Kidding 4
  • 5. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Scope •Background •Features •Services – Github – GitLab – Bitbucket •Resources •Q&A Agenda 5
  • 6. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Scope
  • 7. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Purpose – Introduce distributed version control concept – Generate some Git interest • Depending on use will lead to: – awe – fear – hate – suffering • Pass on the stories, don‟t be „that‟ guy – Some useful concepts • Branch, merge, rebase, amend Scope 7
  • 8. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •This is not a… – Git tutorial • Plenty of resources out there – See „Resources‟ section • Service providers and projects vary • That said… – If there is enough interest • Perhaps a fully-fledged „enabler‟ tech night • “Dude, what the hell is Jenkins and how do I integrate Git with it?” • What is this Selenium and SauceLabs business about?” Scope 8
  • 9. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •This is not a… – GitHub tutorial • There are alternatives Scope 9
  • 10. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Background
  • 11. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Record changes to resources – Not limited to software code • e.g. Wiki article versioning •Recall specific versions – Revert to previous state • File • Image • Project •Tracking – Revision numbers (e.g. 1.0.1, r3893, etc.) Version Control - What 11
  • 12. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Local – Copy to another directory – Patching mechanism • Recovery based on revision sets • “It‟s so simple” (!) – What if? • Forget where it is stored • Overwrite wrong file • Database is corrupted • Datacentre blows up Version Control - How 12
  • 13. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Centralised – Collaborator count > 1 – Client-server model – Due diligence • Auditing capabilities – Access control – What if? • Network connection has high latency • Server fails • Datacentre blows up Version Control - How 13
  • 14. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Distributed – Full mirror • Clients can restore content to server • Every copy is a backup – Hierarchy options • Cross-system collaboration – What if? • Attempt to break it • Datacentre blo…oh, wait Version Control - How 14
  • 15. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Version Control - Who 15
  • 16. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Linux kernel developers abandoned BitKeeper – BitMover alleges reverse-engineering of protocols – Withdraws free use •Linus Torvalds sets out to write one – Existing systems do not meet requirements •Emphasis on speed – Patch the Linux kernel tree at a set rate •Avoid conventional approaches – Do the opposite of what CVS did – Name it „git‟ – Torvalds refers to himself as one (!) Birth of Git 16
  • 17. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Features
  • 18. RACKSPACE® HOSTING | WWW.RACKSPACE.COM 18
  • 19. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Distributed Version Control System (DVCS) – Fast version control – Cheap local branching – Easy to learn •Arguable – some experience required to leverage the more useful features – Influenced by BitKeeper and Monotone concepts •Source Code Management (SCM) principles – Change identification via „revision number‟ • Keep an eye out for those alphanumeric strings… Git Features 19
  • 20. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Some goals – Fast • Must handle patching of the Linux kernel source/tree – Fully distributed • In case the datacentre blows up – Simple design • Compatibility with existing systems and protocols – Strong non-linear development orientation • Rapid branching and merging • Thousands of parallel branches Git Features 20
  • 21. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Snapshots Git Features 21
  • 22. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •“Think locally not globally (!)” – Most operations require local files/resources only •Integrity – Checksum all the things •Generally only add data (apologies to Bruce Lee) – Almost everything has an undo action •The Three States – Committed – Modified – Staged Git Features 22
  • 23. RACKSPACE® HOSTING | WWW.RACKSPACE.COM 23
  • 24. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Diverge and fix (or break) stuff •Main line of development unaffected •Cheap to use branches – Writing 41 bytes to a file – Old school methods used to copy everything :-/ •Basic merge process – Identify best common ancestor – Three-way merge (new snapshot) – Merged work in a new commit object Good to Know - Branch 24
  • 25. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Branch 25
  • 26. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Branch 26
  • 27. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Branch 27
  • 28. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Branch 28
  • 29. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Things do not always go smoothly •Merge a branch with the master – Same object changed in multiple branches – Attempt to merge leads to conflict – „git status‟ shows the list of unmerged objects – Conflicts are marked •Pick the one you want Good to Know - Conflicts 29
  • 30. RACKSPACE® HOSTING | WWW.RACKSPACE.COM <<<<<<< HEAD:somefile.ext Go away! ======= Please go away! >>>>>>> mybranch:somefile.ext Good to Know - Conflicts 30
  • 31. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Effectively – patching •Process – Grab a diff of each commit – Store in temp files – Reset current branch as rebase target – Apply changes in turn •Just one rule to remember – “Do not rebase commits that you have pushed to a public repository” Good to Know - Rebase 31
  • 32. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Rebase 32
  • 33. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Rebase 33
  • 34. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Good to Know - Rebase 34
  • 35. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Rewrite history every once in a while •“Dude, I don‟t want to look like an idiot” •„git commit --amend‟ – Change the commit message – Add or remove objects •This is a mini-rebase – Keep the perils of rebasing in mind Good to Know - Amend 35
  • 36. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Fork a repo •Track changes in parent repo („git remote‟) – Commits can be quickly pulled back into the fork •Create a branch in the fork („git branch) – Keeps the forked repo clean (see previous point) •Modify branch and push back („git push‟) •Test your changes – Generally recommended unless you take rejection well •Pull request to parent repo from your branch Good Practice 36
  • 37. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Services
  • 38. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •May be referred to as “Git as a Service” •Generally public and private repositories •May offer multiple SCM offerings •Additional services – Code review – Issue tracking – Wiki GaaS for the Masses 38
  • 39. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Most popular source code repo site – Social networking concepts •Public and private repos •Free (well…) – Up to a point – No private repos for the free plan •Enterprise offering available – Bring GitHub to your own servers – Rackspace makes use of it – Not exactly cheap (!) GitHub 39
  • 40. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Source code in GitHub o_0 •Free (kind of…) – Self-hosted – you still need a server to run it on •GitLab Cloud – Hosted GitLab – Unlimited private repos (10 users) •GitLab CI – Almost-native CI service GitLab 40
  • 41. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •Free (almost…) – Up to 5 users •Unlimited private repos •Offers Mercurial support – Start-up that was acquired – Atlassian introduced Git support in 2011 •Enterprise offering available – Cheaper than GitHub (at the time of writing) •“Built for JIRA” – Stick a #resolve in your commit message Bitbucket 41
  • 42. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Resources
  • 43. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •The Git SCM book – From the horses mouth – Thank you for the images used in this deck – http://git-scm.com/book •Vogella Git Tutorial – Lars Vogel – http://vogella.com/articles/Git/ •Git for computer scientists – If you‟re all about pointers –http://eagain.net/articles/git-for-computer-scientists/ Resources 43
  • 44. RACKSPACE® HOSTING | WWW.RACKSPACE.COM •The Git SCM tutorial – http://git-scm.com/docs/gittutorial •Six Revisions tutorials –http://sixrevisions.com/resources/git-tutorials-beginners/ •Code School tutorial – Try Git – http://try.github.io/ Resources 44
  • 45. RACKSPACE® HOSTING | WWW.RACKSPACE.COM Questions?
  • 46. 46 RACKSPACE® HOSTING | © RACKSPACE US, INC. | RACKSPACE® AND FANATICAL SUPPORT® ARE SERVICE MARKS OF RACKSPACE US, INC. REGISTERED IN TH E UNITED STATES AND OTHER COUNTRIES. | WWW.RACKSPACE.CO.UK RACKSPACE® HOSTING | 5 MILLINGTON ROAD | HAYES, UNITED KINGDOM UB3 4AZ UK SALES: +44 (0)20 8712 6507 | UK SUPPORT: 0800 988 0300 | WWW.RACKSPACE.CO.UK