SlideShare a Scribd company logo
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

More Related Content

PDF
Databases in the hosted cloud
PDF
KoprowskiT_SQLRelay2014#4_Caerdydd_MaintenancePlansForBeginners
PDF
DrupalCampLA 2014 - Drupal backend performance and scalability
PDF
Best practices for MySQL/MariaDB Server/Percona Server High Availability
PDF
Cool MariaDB Plugins
PDF
Meet MariaDB 10.1 at the Bulgaria Web Summit
PDF
Tuning Linux for your database FLOSSUK 2016
PDF
A Tale of 2 Systems
Databases in the hosted cloud
KoprowskiT_SQLRelay2014#4_Caerdydd_MaintenancePlansForBeginners
DrupalCampLA 2014 - Drupal backend performance and scalability
Best practices for MySQL/MariaDB Server/Percona Server High Availability
Cool MariaDB Plugins
Meet MariaDB 10.1 at the Bulgaria Web Summit
Tuning Linux for your database FLOSSUK 2016
A Tale of 2 Systems

What's hot (20)

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

Viewers also liked (7)

PDF
Git Introduction
PPTX
Git Memento of basic commands
PPTX
Basic Git commands
PPTX
git command
PDF
Basics About Git & GitHub
PDF
Version control system
PDF
A practical approach to version control for SQL Server - By Steve Jones
Git Introduction
Git Memento of basic commands
Basic Git commands
git command
Basics About Git & GitHub
Version control system
A practical approach to version control for SQL Server - By Steve Jones
Ad

Similar to Git - Introduction and Overview (20)

PPT
Git presentation
PDF
Git Pocket Guide A Working Introduction 1st Edition Richard E. Silverman
PPTX
Git Crash Course
PPT
Introduction to git
ODP
Introduction to Git
PPTX
Introduction to Git and Github
PPTX
01 - Git vs SVN
PDF
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
PPTX
Presentation on Repository Control System
PPTX
Git Overview
PDF
Distributed Developer Workflows using Git
PDF
Collaborative development with git
PPTX
Brown bag sessions git workshop
PPTX
Mini-training: Let’s Git It!
PDF
Version Uncontrolled! How to Manage Your Version Control
PPT
Introduction to Git
PPTX
GIT INTRODUCTION
PPT
PDF
Understanding Distributed Source Control
Git presentation
Git Pocket Guide A Working Introduction 1st Edition Richard E. Silverman
Git Crash Course
Introduction to git
Introduction to Git
Introduction to Git and Github
01 - Git vs SVN
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
Presentation on Repository Control System
Git Overview
Distributed Developer Workflows using Git
Collaborative development with git
Brown bag sessions git workshop
Mini-training: Let’s Git It!
Version Uncontrolled! How to Manage Your Version Control
Introduction to Git
GIT INTRODUCTION
Understanding Distributed Source Control

Recently uploaded (20)

PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
KodekX | Application Modernization Development
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Electronic commerce courselecture one. Pdf
PDF
Empathic Computing: Creating Shared Understanding
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
The Rise and Fall of 3GPP – Time for a Sabbatical?
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Chapter 3 Spatial Domain Image Processing.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
KodekX | Application Modernization Development
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
MYSQL Presentation for SQL database connectivity
Electronic commerce courselecture one. Pdf
Empathic Computing: Creating Shared Understanding
20250228 LYD VKU AI Blended-Learning.pptx
Approach and Philosophy of On baking technology
Per capita expenditure prediction using model stacking based on satellite ima...

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