SlideShare a Scribd company logo
Introduction To Git Workshop
Tom Aratyn
Get Git
• On Matrix
•

I have accounts for you

• On Windows
•

http://msysgit.github.io

• On OS X
•

brew install git

• On Linux
•

sudo apt-get install git

• Otherwise
•

http://git-scm.com
About Me
Django and JavaScript Developer
Founder @ The Boulevard Platform
Engineer @ FoxyProxy
Created open source projects:
BitBucket Release Note Generator
django-email-changer
Exploit Me Suite
Why Git?
Git is
•
•
•
•
•

Small
Fast
Distributed
Free & Open Source
Trusted
•
•
•

Linux
Homebrew
Everyone on GitHub + Gitorious +
Not Just For Code
(but mainly for code)
http://government.github.com
Introduction To Git Workshop
About Today
What we will cover
• Creating Repos
• Checking Out
• Committing
• Basic Branching
• Basic Merging
• Pushing & Pulling

What we won't
• git reset
• Changing history

• Rebasing
• Adding/Removing
Remotes
• Partial Staging
• Fetch
• Tags
Making A Git Repository
Normal Repository
Bare Repository
Cloned Repository
A git repository with a working directory

Normal Repository
Normal Repository Exercise
$ git init workshop.normal.git
A git repo without a working directory
(this is what you want on the repo)

Bare Repository
Bare Repository Exercise
$ git init --bare workshop.bare.git
Cloned Repository
A normal repository is a copy of a remote repository and setup to
work with it.
Cloned Repository Exercise
$ git clone workshop.bare.git
workshop.git
$ cd workshop.git
Image By: Scott Chacon, Pro Git
Staging Files
Before a file can be added it must
be staged
Staging File Exercise
$ mvim index.html
$ git add index.html
What’s The Status Of My Files
Right Now?
$ git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
#
(use "git rm --cached <file>..." to
unstage)
#
# new file:
index.html
#
Committing Files
Committing means that we want in the
version control system.
All staged files will be committed.
Commit File Exercise
$ git commit –m "My initial commit"
Commit File Exercise Result
Committer: Tom Aratyn <mystic@nelson.local>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 foo
The Log
Git keeps a log of everything you commit,
who wrote authored it, and who committed
it.
View The Git Log Exercise
$ git log
$ git log --graph
$ gitk
(Don’t worry there are better
GUIs, more on that later)
Why isn't your name there?
The Parts Of A Log
List of commits and branch pointers
A commit is made up of:
•
•
•
•
•

SHA1 id
Message
Files
Author
Committer
Configuring git
git is configured in two places:
~/.gitconfig
youreRepo/.git/config
Configuring Git Exercise
$ git config --global user.name
"Your Name"
$ git config --global user.email
you@example.com
Configuring Git Exercise Result
$ cat ~/.gitconfig
[user]
name = Tom Aratyn
email = "tom@aratyn.name"
Changing History
There are many ways to change history in
git.
We're only going to look at one way:
Amend the last commit.
Change The Last Commit Exercise
$ git commit --amend -m "initial
commit with an html file"
$ # has the author changed?
$ gitk
Author Vs. Committer
Git is made from from the ground up for
multiple developer projects (Linux).
Large projects often distinguish between the
author (who wrote the patch/code) and the
committer (who let it into the blessed
repository)
Update the Author Exercise
$ git commit --amend --resetauthor
# why did the screen change ?
# type in ":wq" to leave vim.
How To Remove A File?
What if we committed a file we no longer
need can we get rid of it?
Yes & No
From the current (and future) versions.

Yes, You Can Remove It
No, It'll Be In Past Versions
The whole point of version control is you can always recover old
files.
Remove A File Exercise
$ git rm index.html
$ ls
$ #Notice how the file is now gone
$ git status
$ #Notice how the file is staged
$ git commit -m "Removed
index.html"
Create another index.html and commit it

Practice: Adding a file
Branching
Fast and easy branching is git's killer
feature.
Branches let development progress on
multiple fronts separately and
simultaneously.
Check Your Branch Exercise
$ git branch
$ git branch –a
$ # What's the difference between
the two commands?
Create A Branch Exercise
$ git branch workshop-example
$ git branch
$ # what branch are you on?
Switch Branch Exercise
$ git checkout workshop-example
$ git branch
$ # now what branch are you on?
Switch To A New Branch
Immediately Exercise
$ git checkout -b fix-bug-123
$ git branch
$ gitk
Making A Change On A Branch
Exercise
$ # edit index.html
$ git add index.html
$ git commit -m "Added some initial
html"
Merging
Merging is really git's killer feature
Because branching without merging is pretty
useless
See CVS
Merging Process
1. Go to the branch you want to merge into
• Often the branch you branched off of.
• Usually "master" or "develop"

2. Do the merge
Two Three types of merges
1. Fast Forward Merge
2. Basic Merge
a. Conflicted Merge
Only available when the branch can be cleanly applied onto your
current branch

Fast Forward Merge
Fast Forward Merge Exercise
$ # (assuming you have a change on
fix-bug-123 - use gitk to check)
$ git checkout master
$ git merge fix-bug-123
$ gitk
Basic Merge Exercise
Prep
Add add a div on the master
branch
Change the title on the fixbug-123 branch

Recall
git checkout
git add
git commit
Basic Merge Exercise
$ git checkout master
$ git merge fix-bug-123
$ git log --graph --decorate --all
Conflicted Merge Exercise
Prep
Change the same line on
both branches
(change the class on the
same div)

Recall
git checkout
git add
git commit
Conflicted Merge Exercise
$
$
$
$
$
$
$

git checkout master
git merge fix-bug-123
git status
# edit index.html
git add index.html
git commit
git log --graph --decorate --all
Sharing Is Caring
So far everything we've done is on the same
repo but projects need to be shared.
Git lets you push your changes to others
and pull the changes others made.
Pushing Exercise
$ # Recall that we cloned our bare
repo
$ git push origin master
$ cd ../workshop.bare.git
$ git log
Pulling Exercise
Prep
1. Clone the bare repo
again
•

Call it workshop.2.git

2. Commit a change to
workshop.git
3. Push the change

Recall
git clone
git add
git commit
git push
Pulling Exercise
$
$
$
$

cd ../workshop.2.git
git branch
git pull
git log
How does pulling work?
Tracking Branches
A tracking branch is a local branch which
knows that updates to a remote branch
should be applied to it.
Tracking Branch Exercise
$ git checkout –t
remotes/origin/fix-bug-123
About Today
What we covered
• Creating Repos
• Checking Out
• Committing
• Basic Branching
• Basic Merging
• Pushing & Pulling

What we didn't
• git reset
• Changing history

• Rebasing
• Adding/Removing
Remotes
• Partial Staging
Where to next?
Learn more at from "Pro Git"
http://git-scm.com/book

Start Your Project:
Free Open Source Repos
http://github.com

Free Private Repos
http://bitbucket.org

GUI: http://SourceTreeApp.com
Questions?
A link to this presentation will be on
http://blog.tom.aratyn.name
@themystic
tom@aratyn.name (I can email it to you)

Thank You!

More Related Content

What's hot (20)

PPTX
Github
JaneAlamAdnan
 
PDF
GIT | Distributed Version Control System
Mohammad Imam Hossain
 
PDF
My Notes from https://www.codeschool.com/courses/git-real
Eneldo Serrata
 
PDF
Intro to Git and GitHub
Matthew McCullough
 
PPTX
Introduction to git and github
Aderemi Dadepo
 
PPT
Learn Git Basics
Prakash Dantuluri
 
PPTX
Git commands
Viyaan Jhiingade
 
PDF
Github - Le Wagon Melbourne
Paal Ringstad
 
PDF
Git Version Control System
KMS Technology
 
PDF
Git - Get Ready To Use It
Daniel Kummer
 
KEY
Git Basics - RubyFest 2009
Ariejan de Vroom
 
PDF
Git advanced
Peter Vandenabeele
 
PDF
Git and github - Verson Control for the Modern Developer
John Stevenson
 
PDF
Git & GitHub WorkShop
SheilaJimenezMorejon
 
PDF
Version Control with Git for Beginners
bryanbibat
 
PDF
Deep dark-side of git: How git works internally
SeongJae Park
 
KEY
Git: from Novice to Expert
Goddy Zhao
 
PDF
Introduction to Git and Github
Houari ZEGAI
 
PDF
Nina Zakharenko - Introduction to Git - Start SLC 2015
Nina Zakharenko
 
KEY
Git Basics at Rails Underground
Ariejan de Vroom
 
GIT | Distributed Version Control System
Mohammad Imam Hossain
 
My Notes from https://www.codeschool.com/courses/git-real
Eneldo Serrata
 
Intro to Git and GitHub
Matthew McCullough
 
Introduction to git and github
Aderemi Dadepo
 
Learn Git Basics
Prakash Dantuluri
 
Git commands
Viyaan Jhiingade
 
Github - Le Wagon Melbourne
Paal Ringstad
 
Git Version Control System
KMS Technology
 
Git - Get Ready To Use It
Daniel Kummer
 
Git Basics - RubyFest 2009
Ariejan de Vroom
 
Git advanced
Peter Vandenabeele
 
Git and github - Verson Control for the Modern Developer
John Stevenson
 
Git & GitHub WorkShop
SheilaJimenezMorejon
 
Version Control with Git for Beginners
bryanbibat
 
Deep dark-side of git: How git works internally
SeongJae Park
 
Git: from Novice to Expert
Goddy Zhao
 
Introduction to Git and Github
Houari ZEGAI
 
Nina Zakharenko - Introduction to Git - Start SLC 2015
Nina Zakharenko
 
Git Basics at Rails Underground
Ariejan de Vroom
 

Viewers also liked (20)

PDF
Especialidade de inclusão 5
GRUPO ESCOTEIRO JOÃO OSCALINO
 
PPT
component based softwrae engineering Cbse
Sravs Dals
 
PPT
MockupBuilder
Lviv Startup Club
 
PDF
Docker & PHP - Practical use case
rjsmelo
 
PPTX
Docker for Developers - PNWPHP 2016 Workshop
Chris Tankersley
 
PDF
Microservices without Servers
Dev_Events
 
DOCX
Spm file33
Poonam Singh
 
ODP
Git Workshop : Getting Started
Wildan Maulana
 
PDF
Computer-free Website Development Demo - WordPressDC Jan 2015
Anthony D. Paul
 
PPTX
Docker for PHP Developers - ZendCon 2016
Chris Tankersley
 
PPTX
Information Design Web Planning Mockup
ANGELA Smithers
 
PPT
NTR Lab - bespoke software development in Russia
Olessya
 
PDF
2013 Social Admissions Report
Uversity, Inc.
 
PPTX
Php development with Docker
Michael Bui
 
PPTX
Engine lab software hybrid cloud specialists
John Rowan
 
PPTX
The App Evolution
Dev_Events
 
PDF
An introduction to contianers and Docker for PHP developers
Robert McFrazier
 
PDF
Lab docker
Bruno Cornec
 
PDF
Building Next Generation Applications and Microservices
Dev_Events
 
PDF
Trabalhando em ambientes php com docker
Alef Castelo
 
Especialidade de inclusão 5
GRUPO ESCOTEIRO JOÃO OSCALINO
 
component based softwrae engineering Cbse
Sravs Dals
 
MockupBuilder
Lviv Startup Club
 
Docker & PHP - Practical use case
rjsmelo
 
Docker for Developers - PNWPHP 2016 Workshop
Chris Tankersley
 
Microservices without Servers
Dev_Events
 
Spm file33
Poonam Singh
 
Git Workshop : Getting Started
Wildan Maulana
 
Computer-free Website Development Demo - WordPressDC Jan 2015
Anthony D. Paul
 
Docker for PHP Developers - ZendCon 2016
Chris Tankersley
 
Information Design Web Planning Mockup
ANGELA Smithers
 
NTR Lab - bespoke software development in Russia
Olessya
 
2013 Social Admissions Report
Uversity, Inc.
 
Php development with Docker
Michael Bui
 
Engine lab software hybrid cloud specialists
John Rowan
 
The App Evolution
Dev_Events
 
An introduction to contianers and Docker for PHP developers
Robert McFrazier
 
Lab docker
Bruno Cornec
 
Building Next Generation Applications and Microservices
Dev_Events
 
Trabalhando em ambientes php com docker
Alef Castelo
 
Ad

Similar to Introduction To Git Workshop (20)

PPTX
Git 101 - An introduction to Version Control using Git
John Tighe
 
PPTX
Git Memento of basic commands
Zakaria Bouazza
 
PPTX
Hacktoberfest intro to Git and GitHub
DSC GVP
 
PDF
Git Init (Introduction to Git)
GDSC UofT Mississauga
 
ODP
Git presentation
Vikas Yaligar
 
PPTX
Introduction to Git and GitHub
Bioinformatics and Computational Biosciences Branch
 
PDF
Git cheat-sheet-education
Avitesh Kesharwani
 
PDF
test
zwned
 
PDF
Techmoneyguide
Rockstartssl
 
PDF
Git cheat-sheet-education
ssuser0bad24
 
PDF
Git for developers
Hacen Dadda
 
PPTX
Techoalien git
Aditya Tiwari
 
PPTX
Techoalien git
Aditya Tiwari
 
PPTX
Techoalien git
Aditya Tiwari
 
PDF
How to make friends with git
Ilya Vorobiev
 
PDF
Source Code Management with Git
Things Lab
 
PDF
Github git-cheat-sheet
Abdul Basit
 
KEY
Git Distributed Version Control System
Victor Wong
 
PPTX
Git_new.pptx
BruceLee275640
 
PDF
Embedded Systems: Lecture 11: Introduction to Git & GitHub (Part 2)
Ahmed El-Arabawy
 
Git 101 - An introduction to Version Control using Git
John Tighe
 
Git Memento of basic commands
Zakaria Bouazza
 
Hacktoberfest intro to Git and GitHub
DSC GVP
 
Git Init (Introduction to Git)
GDSC UofT Mississauga
 
Git presentation
Vikas Yaligar
 
Git cheat-sheet-education
Avitesh Kesharwani
 
test
zwned
 
Techmoneyguide
Rockstartssl
 
Git cheat-sheet-education
ssuser0bad24
 
Git for developers
Hacen Dadda
 
Techoalien git
Aditya Tiwari
 
Techoalien git
Aditya Tiwari
 
Techoalien git
Aditya Tiwari
 
How to make friends with git
Ilya Vorobiev
 
Source Code Management with Git
Things Lab
 
Github git-cheat-sheet
Abdul Basit
 
Git Distributed Version Control System
Victor Wong
 
Git_new.pptx
BruceLee275640
 
Embedded Systems: Lecture 11: Introduction to Git & GitHub (Part 2)
Ahmed El-Arabawy
 
Ad

Recently uploaded (20)

PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 

Introduction To Git Workshop

  • 1. Introduction To Git Workshop Tom Aratyn
  • 2. Get Git • On Matrix • I have accounts for you • On Windows • http://msysgit.github.io • On OS X • brew install git • On Linux • sudo apt-get install git • Otherwise • http://git-scm.com
  • 3. About Me Django and JavaScript Developer Founder @ The Boulevard Platform Engineer @ FoxyProxy Created open source projects: BitBucket Release Note Generator django-email-changer Exploit Me Suite
  • 4. Why Git? Git is • • • • • Small Fast Distributed Free & Open Source Trusted • • • Linux Homebrew Everyone on GitHub + Gitorious +
  • 5. Not Just For Code (but mainly for code) http://government.github.com
  • 7. About Today What we will cover • Creating Repos • Checking Out • Committing • Basic Branching • Basic Merging • Pushing & Pulling What we won't • git reset • Changing history • Rebasing • Adding/Removing Remotes • Partial Staging • Fetch • Tags
  • 8. Making A Git Repository Normal Repository Bare Repository Cloned Repository
  • 9. A git repository with a working directory Normal Repository
  • 10. Normal Repository Exercise $ git init workshop.normal.git
  • 11. A git repo without a working directory (this is what you want on the repo) Bare Repository
  • 12. Bare Repository Exercise $ git init --bare workshop.bare.git
  • 13. Cloned Repository A normal repository is a copy of a remote repository and setup to work with it.
  • 14. Cloned Repository Exercise $ git clone workshop.bare.git workshop.git $ cd workshop.git
  • 15. Image By: Scott Chacon, Pro Git
  • 16. Staging Files Before a file can be added it must be staged
  • 17. Staging File Exercise $ mvim index.html $ git add index.html
  • 18. What’s The Status Of My Files Right Now? $ git status # On branch master # # Initial commit # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # # new file: index.html #
  • 19. Committing Files Committing means that we want in the version control system. All staged files will be committed.
  • 20. Commit File Exercise $ git commit –m "My initial commit"
  • 21. Commit File Exercise Result Committer: Tom Aratyn <[email protected]> Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate. You can suppress this message by setting them explicitly: git config --global user.name "Your Name" git config --global user.email [email protected] After doing this, you may fix the identity used for this commit with: git commit --amend --reset-author 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 foo
  • 22. The Log Git keeps a log of everything you commit, who wrote authored it, and who committed it.
  • 23. View The Git Log Exercise $ git log $ git log --graph $ gitk
  • 24. (Don’t worry there are better GUIs, more on that later)
  • 25. Why isn't your name there?
  • 26. The Parts Of A Log List of commits and branch pointers A commit is made up of: • • • • • SHA1 id Message Files Author Committer
  • 27. Configuring git git is configured in two places: ~/.gitconfig youreRepo/.git/config
  • 28. Configuring Git Exercise $ git config --global user.name "Your Name" $ git config --global user.email [email protected]
  • 29. Configuring Git Exercise Result $ cat ~/.gitconfig [user] name = Tom Aratyn email = "[email protected]"
  • 30. Changing History There are many ways to change history in git. We're only going to look at one way: Amend the last commit.
  • 31. Change The Last Commit Exercise $ git commit --amend -m "initial commit with an html file" $ # has the author changed? $ gitk
  • 32. Author Vs. Committer Git is made from from the ground up for multiple developer projects (Linux). Large projects often distinguish between the author (who wrote the patch/code) and the committer (who let it into the blessed repository)
  • 33. Update the Author Exercise $ git commit --amend --resetauthor # why did the screen change ? # type in ":wq" to leave vim.
  • 34. How To Remove A File? What if we committed a file we no longer need can we get rid of it? Yes & No
  • 35. From the current (and future) versions. Yes, You Can Remove It
  • 36. No, It'll Be In Past Versions The whole point of version control is you can always recover old files.
  • 37. Remove A File Exercise $ git rm index.html $ ls $ #Notice how the file is now gone $ git status $ #Notice how the file is staged $ git commit -m "Removed index.html"
  • 38. Create another index.html and commit it Practice: Adding a file
  • 39. Branching Fast and easy branching is git's killer feature. Branches let development progress on multiple fronts separately and simultaneously.
  • 40. Check Your Branch Exercise $ git branch $ git branch –a $ # What's the difference between the two commands?
  • 41. Create A Branch Exercise $ git branch workshop-example $ git branch $ # what branch are you on?
  • 42. Switch Branch Exercise $ git checkout workshop-example $ git branch $ # now what branch are you on?
  • 43. Switch To A New Branch Immediately Exercise $ git checkout -b fix-bug-123 $ git branch $ gitk
  • 44. Making A Change On A Branch Exercise $ # edit index.html $ git add index.html $ git commit -m "Added some initial html"
  • 45. Merging Merging is really git's killer feature Because branching without merging is pretty useless See CVS
  • 46. Merging Process 1. Go to the branch you want to merge into • Often the branch you branched off of. • Usually "master" or "develop" 2. Do the merge
  • 47. Two Three types of merges 1. Fast Forward Merge 2. Basic Merge a. Conflicted Merge
  • 48. Only available when the branch can be cleanly applied onto your current branch Fast Forward Merge
  • 49. Fast Forward Merge Exercise $ # (assuming you have a change on fix-bug-123 - use gitk to check) $ git checkout master $ git merge fix-bug-123 $ gitk
  • 50. Basic Merge Exercise Prep Add add a div on the master branch Change the title on the fixbug-123 branch Recall git checkout git add git commit
  • 51. Basic Merge Exercise $ git checkout master $ git merge fix-bug-123 $ git log --graph --decorate --all
  • 52. Conflicted Merge Exercise Prep Change the same line on both branches (change the class on the same div) Recall git checkout git add git commit
  • 53. Conflicted Merge Exercise $ $ $ $ $ $ $ git checkout master git merge fix-bug-123 git status # edit index.html git add index.html git commit git log --graph --decorate --all
  • 54. Sharing Is Caring So far everything we've done is on the same repo but projects need to be shared. Git lets you push your changes to others and pull the changes others made.
  • 55. Pushing Exercise $ # Recall that we cloned our bare repo $ git push origin master $ cd ../workshop.bare.git $ git log
  • 56. Pulling Exercise Prep 1. Clone the bare repo again • Call it workshop.2.git 2. Commit a change to workshop.git 3. Push the change Recall git clone git add git commit git push
  • 59. Tracking Branches A tracking branch is a local branch which knows that updates to a remote branch should be applied to it.
  • 60. Tracking Branch Exercise $ git checkout –t remotes/origin/fix-bug-123
  • 61. About Today What we covered • Creating Repos • Checking Out • Committing • Basic Branching • Basic Merging • Pushing & Pulling What we didn't • git reset • Changing history • Rebasing • Adding/Removing Remotes • Partial Staging
  • 62. Where to next? Learn more at from "Pro Git" http://git-scm.com/book Start Your Project: Free Open Source Repos http://github.com Free Private Repos http://bitbucket.org GUI: http://SourceTreeApp.com
  • 64. A link to this presentation will be on http://blog.tom.aratyn.name @themystic [email protected] (I can email it to you) Thank You!