SlideShare a Scribd company logo
1 of 54
Download to read offline
git started with git
      Nick Quaranto
       nick@quaran.to
       NH.rb April 2009
whoami
• 5th year Software Engineering Major at RIT
• Intern at Thoughtbot
• Blogger at
 • http://github.com/blog
 • http://gitready.com
 • http://litanyagainstfear.com
git pull origin slides

http://drop.io/gitstarted
what’s in store
• ok, no more puns
• i’m a ruby developer, not a kernel hacker
• history lesson
• concepts and principles
• basic workflow
what is git?
“Git is a free distributed revision control, or
software source code management project
with an emphasis on being fast.”


http://en.wikipedia.org/wiki/Git_(software)
actually,


git is a stupid content tracker.
git’s history

• Originally created to handle Linux kernel
  development
• Everything else sucked.
• Now used by plenty of other projects and
  web frameworks that don’t scale
design motives

• Do exactly the opposite of CVS/SVN
• Support distributed workflow
• Guard against data corruption
• Be ridiculously fast
principles behind git

• distributed and parallel development
• one project, one repository
• never lose data without intervention
• unix philosophy built in
repos

• In a .git directory:
 • A set of commit objects
 • A set of references to commits (heads)
 • More stuff, but don’t worry about it.
commits
• A snapshot of the project at a given time
 • trees: subdirectories
 • blobs: files
• Link to parent commit(s)
• 40 character SHA1 hash
the object model
the big difference
tags (not web 2.0)
• Mark releases, important stuff
• Contains:
 • Committer
 • Message
 • Commit SHA
 • Signature (optional)
local commands
• Creating repositories
• Viewing history
• Performing a diff
• Merging branches
• Switching branches
actually using git
• porcelain vs. plumbing
• don’t be scared of your terminal
• GUI support is not 100% there yet
• yes, it works on Windows.
• plenty of import/interop tools
workflows


• simple & centralized
• hardcore forking action
simple & centralized


• basic workflow for most projects
• host your code at github, gitosis, etc
the staging area
create your project
$ rails toast2.0
[... blah blah blah ...]



$ cd toast2.0
$ git init
Initialized empty Git repository in /Users/qrush/Dev/toast2.0/.git/
more setup
$ edit .gitignore
$ git add .
$ git commit -m “first commit”
 [master (root-commit)]: created 8c24524: quot;Initial commitquot;
 41 files changed, 8452 insertions(+), 0 deletions(-)
 [.. files files files ..]
DONE.
Ok, maybe not.

$ edit config/environment.rb

$ script/generate migration
AddPosts
$ git status

# On branch master
# Changed but not updated:
#   (use quot;git add <file>...quot; to update what will be committe
#   (use quot;git checkout -- <file>...quot; to discard changes in w
directory)
#
#	 modified:   config/environment.rb
#
# Untracked files:
#   (use quot;git add <file>...quot; to include in what will be comm
#
#	 db/
no changes added to commit (use quot;git addquot; and/or quot;git commit
$ git diff

diff --git a/config/environment.rb b/config/environment.rb
index 631a3a3..dfc184b 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -15,10 +15,7 @@ Rails::Initializer.run do |config|
   # config.load_paths += %W( #{RAILS_ROOT}/extras )

    # Specify gems that this application depends on
-   # config.gem quot;bjquot;
-   # config.gem quot;hpricotquot;, :version => '0.6', :source => quot;ht
-   # config.gem quot;sqlite3-rubyquot;, :lib => quot;sqlite3quot;
-   # config.gem quot;aws-s3quot;, :lib => quot;aws/s3quot;
+   config.gem quot;thoughtbot-factory_girlquot;, :lib => quot;factory_gi
$ git add db/

$ git status

# On branch master
# Changes to be committed:
#   (use quot;git reset HEAD <file>...quot; to unstage)
#
#	 new file:   db/migrate/20090410120301_add_posts.rb
#
# Changed but not updated:
#   (use quot;git add <file>...quot; to update what will be committe
#   (use quot;git checkout -- <file>...quot; to discard changes in w
#
#	 config/environment.rb

$ git commit -m “Adding posts migration”
build your history
the grind

Hack away, fix bugs       vim / mate / etc

  Stage changes                git add

 Review changes          git status/diff

  Store changes               git commit
oh crap.
      git stash         temporarily store changes

  git checkout file      restore to last commit

   git reset file              unstage file

git reset --hard file     unstage & restore file

   git checkout -f         restore everything

  git revert commit         undo a changeset
hardcore forking action


• Fork means another repo
• Multiple repos means multiple branches
branches

      •   Cheap and local

      •   Easy to switch

      •   Try out new ideas

      •   Merging is way smarter
using a branch
                           create new branch
git checkout -b feature2


                            save some work
       git commit


                              switch back
  git checkout master


                           work is merged in
   git merge feature2


                           work played on top
  git rebase feature2


                             delete branch
 git branch -d feature2
merging (before)
merging (after)
rebasing (before)
rebasing (after)
merge vs. rebase
warning!

• Rebasing is rewriting history
• BAD for pushed commits
• Keep the repo in fast-forward
• (This doesn’t mean rebase is bad!)
syncing up
push away
$ git remote add origin git@github.com:qrush/
toast2.0.git

$ git push origin master

Counting objects: 78, done.
Compressing objects: 100% (71/71), done.
Writing objects: 100% (78/78), 80.49 KiB, done.
Total 78 (delta 21), reused 0 (delta 0)
To git@github.com:qrush/toast2.0.git
 * [new branch]      master -> master
sharing
  github                  awesome.
  gitosis          self-managed, ssh auth
git instaweb         instant web view
git daemon               local sharing
  gitjour            osx over bonjour
bringing down code

git fetch remote: get updates

git pull remote branch:

• get updates from remote for branch
• merge/rebase it into your current branch
basic pulling

$ git remote add mojombo git://
github.com/mojombo/jekyll.git
$ git pull mojombo master
go fetch
$ git remote add mojombo git://
github.com/mojombo/jekyll.git
$ git fetch mojombo
$ gitx
$ git merge mojombo/master
looking at upstream
after merge
topic branch
with a merge
Interactive Awesome.
git rebase -i

• Reordering commits
• Splitting up changesets
• Editing commits
• Dropping them completely
• Squashing multiple commits into one
$ git rebase -i HEAD~6

pick   a4d0f79   Adding posts in
pick   7e71afd   Revert quot;Adding posts inquot;
pick   5e815ec   Adding the right model
pick   956f4ce   Cleaning up model
pick   6c6cdb4   Who needs tests?
pick   c3481fd   Wrapping this up. Ship it.

# Rebase bd0ceed..c3481fd onto bd0ceed
#
# Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
$ git rebase -i HEAD~6

pick a4d0f79 Adding posts in
squash 7e71afd Revert quot;Adding posts inquot;
squash 5e815ec Adding the right model
squash 956f4ce Cleaning up model
squash 6c6cdb4 Who needs tests?
squash c3481fd Wrapping this up. Ship it.

# Rebase bd0ceed..c3481fd onto bd0ceed
#
# Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
squashed
learn more
• http://book.git-scm.com
• http://gitready.com
• http://learn.github.com
• http://gitcasts.com
• git internals peepcode
thanks
•   kudos to:

    •   Scott Chacon for awesome presentations

    •   Charles Duan for his great git tutorial

    •   Ben Hughes for bugging me to try git

    •   You for listening/reading

More Related Content

What's hot (20)

git and github
git and githubgit and github
git and github
 
Learning git
Learning gitLearning git
Learning git
 
Git training v10
Git training v10Git training v10
Git training v10
 
Git and GitHub
Git and GitHubGit and GitHub
Git and GitHub
 
Git One Day Training Notes
Git One Day Training NotesGit One Day Training Notes
Git One Day Training Notes
 
Git basics to advance with diagrams
Git basics to advance with diagramsGit basics to advance with diagrams
Git basics to advance with diagrams
 
The everyday developer's guide to version control with Git
The everyday developer's guide to version control with GitThe everyday developer's guide to version control with Git
The everyday developer's guide to version control with Git
 
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
Version Control with Git
Version Control with GitVersion Control with Git
Version Control with Git
 
Git and Github Session
Git and Github SessionGit and Github Session
Git and Github Session
 
Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction Tutorial
 
Git for beginners
Git for beginnersGit for beginners
Git for beginners
 
Git
GitGit
Git
 
Intro to Git and GitHub
Intro to Git and GitHubIntro to Git and GitHub
Intro to Git and GitHub
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: Foundations
 
Github basics
Github basicsGithub basics
Github basics
 
Git workflows
Git workflowsGit workflows
Git workflows
 
Git best practices workshop
Git best practices workshopGit best practices workshop
Git best practices workshop
 
Git in 10 minutes
Git in 10 minutesGit in 10 minutes
Git in 10 minutes
 

Viewers also liked

Manual jira , Instalación, Creación de Proyecto, Incidencias, Usuarios
Manual jira , Instalación, Creación de Proyecto, Incidencias, UsuariosManual jira , Instalación, Creación de Proyecto, Incidencias, Usuarios
Manual jira , Instalación, Creación de Proyecto, Incidencias, UsuariosLeo Ruelas Rojas
 
Open Source Collaboration With Git And Git Hub
Open Source Collaboration With Git And Git HubOpen Source Collaboration With Git And Git Hub
Open Source Collaboration With Git And Git HubNick Quaranto
 
NoSQL: Why, When, and How
NoSQL: Why, When, and HowNoSQL: Why, When, and How
NoSQL: Why, When, and HowBigBlueHat
 
Métodos Ágiles y Scrum - A3
Métodos Ágiles y Scrum - A3Métodos Ágiles y Scrum - A3
Métodos Ágiles y Scrum - A3Métodos Ágiles
 
Kanban 101 - 0 - Introduction
Kanban 101 - 0 - IntroductionKanban 101 - 0 - Introduction
Kanban 101 - 0 - IntroductionMichael Sahota
 
Presentacion kanban
Presentacion kanbanPresentacion kanban
Presentacion kanbanYN HS
 
Kanban Board Examples
Kanban Board ExamplesKanban Board Examples
Kanban Board ExamplesShore Labs
 
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?Miquel Mora
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners HubSpot
 
Cuales son los problemas administrativos mas comunes que se presenta en cualq...
Cuales son los problemas administrativos mas comunes que se presenta en cualq...Cuales son los problemas administrativos mas comunes que se presenta en cualq...
Cuales son los problemas administrativos mas comunes que se presenta en cualq...darioreynel
 

Viewers also liked (13)

Manual jira , Instalación, Creación de Proyecto, Incidencias, Usuarios
Manual jira , Instalación, Creación de Proyecto, Incidencias, UsuariosManual jira , Instalación, Creación de Proyecto, Incidencias, Usuarios
Manual jira , Instalación, Creación de Proyecto, Incidencias, Usuarios
 
Open Source Collaboration With Git And Git Hub
Open Source Collaboration With Git And Git HubOpen Source Collaboration With Git And Git Hub
Open Source Collaboration With Git And Git Hub
 
NoSQL: Why, When, and How
NoSQL: Why, When, and HowNoSQL: Why, When, and How
NoSQL: Why, When, and How
 
Git studynotes
Git studynotesGit studynotes
Git studynotes
 
Métodos Ágiles y Scrum - A3
Métodos Ágiles y Scrum - A3Métodos Ágiles y Scrum - A3
Métodos Ágiles y Scrum - A3
 
Kanban 101 - 0 - Introduction
Kanban 101 - 0 - IntroductionKanban 101 - 0 - Introduction
Kanban 101 - 0 - Introduction
 
Presentacion kanban
Presentacion kanbanPresentacion kanban
Presentacion kanban
 
Introduction to git
Introduction to gitIntroduction to git
Introduction to git
 
Kanban Board Examples
Kanban Board ExamplesKanban Board Examples
Kanban Board Examples
 
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?
Historias de usuario¿Por qué? ¿Qué son? ¿Cómo son?
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners
 
Getting Git
Getting GitGetting Git
Getting Git
 
Cuales son los problemas administrativos mas comunes que se presenta en cualq...
Cuales son los problemas administrativos mas comunes que se presenta en cualq...Cuales son los problemas administrativos mas comunes que se presenta en cualq...
Cuales son los problemas administrativos mas comunes que se presenta en cualq...
 

Similar to Git Started With Git

Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control SystemVictor Wong
 
Git Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a BossGit Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a Bosstmacwilliam
 
Getting some Git
Getting some GitGetting some Git
Getting some GitBADR
 
Git workshop
Git workshopGit workshop
Git workshopRay Toal
 
Introduction to Git for Artists
Introduction to Git for ArtistsIntroduction to Git for Artists
Introduction to Git for ArtistsDavid Newbury
 
Introduction To Git Workshop
Introduction To Git WorkshopIntroduction To Git Workshop
Introduction To Git Workshopthemystic_ca
 
Pro git - grasping it conceptually
Pro git - grasping it conceptuallyPro git - grasping it conceptually
Pro git - grasping it conceptuallyseungzzang Kim
 
Jedi Mind Tricks for Git
Jedi Mind Tricks for GitJedi Mind Tricks for Git
Jedi Mind Tricks for GitJan Krag
 

Similar to Git Started With Git (20)

Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
 
Loading...git
Loading...gitLoading...git
Loading...git
 
Introduction to Git (Greg Lonnon)
Introduction to Git (Greg Lonnon)Introduction to Git (Greg Lonnon)
Introduction to Git (Greg Lonnon)
 
Wokshop de Git
Wokshop de Git Wokshop de Git
Wokshop de Git
 
Git Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a BossGit Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a Boss
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Getting some Git
Getting some GitGetting some Git
Getting some Git
 
Git workshop
Git workshopGit workshop
Git workshop
 
How to use git without rage
How to use git without rageHow to use git without rage
How to use git without rage
 
Git Tech Talk
Git  Tech TalkGit  Tech Talk
Git Tech Talk
 
Introduction to Git for Artists
Introduction to Git for ArtistsIntroduction to Git for Artists
Introduction to Git for Artists
 
Introduction To Git Workshop
Introduction To Git WorkshopIntroduction To Git Workshop
Introduction To Git Workshop
 
Git basics
Git basicsGit basics
Git basics
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Gittalk
GittalkGittalk
Gittalk
 
Git presentation
Git presentationGit presentation
Git presentation
 
Pro git - grasping it conceptually
Pro git - grasping it conceptuallyPro git - grasping it conceptually
Pro git - grasping it conceptually
 
Git github
Git githubGit github
Git github
 
Jedi Mind Tricks in Git
Jedi Mind Tricks in GitJedi Mind Tricks in Git
Jedi Mind Tricks in Git
 
Jedi Mind Tricks for Git
Jedi Mind Tricks for GitJedi Mind Tricks for Git
Jedi Mind Tricks for Git
 

Recently uploaded

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Recently uploaded (20)

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

Git Started With Git

  • 1. git started with git Nick Quaranto nick@quaran.to NH.rb April 2009
  • 2. whoami • 5th year Software Engineering Major at RIT • Intern at Thoughtbot • Blogger at • http://github.com/blog • http://gitready.com • http://litanyagainstfear.com
  • 3. git pull origin slides http://drop.io/gitstarted
  • 4. what’s in store • ok, no more puns • i’m a ruby developer, not a kernel hacker • history lesson • concepts and principles • basic workflow
  • 5. what is git? “Git is a free distributed revision control, or software source code management project with an emphasis on being fast.” http://en.wikipedia.org/wiki/Git_(software)
  • 6. actually, git is a stupid content tracker.
  • 7. git’s history • Originally created to handle Linux kernel development • Everything else sucked. • Now used by plenty of other projects and web frameworks that don’t scale
  • 8. design motives • Do exactly the opposite of CVS/SVN • Support distributed workflow • Guard against data corruption • Be ridiculously fast
  • 9. principles behind git • distributed and parallel development • one project, one repository • never lose data without intervention • unix philosophy built in
  • 10. repos • In a .git directory: • A set of commit objects • A set of references to commits (heads) • More stuff, but don’t worry about it.
  • 11. commits • A snapshot of the project at a given time • trees: subdirectories • blobs: files • Link to parent commit(s) • 40 character SHA1 hash
  • 14. tags (not web 2.0) • Mark releases, important stuff • Contains: • Committer • Message • Commit SHA • Signature (optional)
  • 15. local commands • Creating repositories • Viewing history • Performing a diff • Merging branches • Switching branches
  • 16. actually using git • porcelain vs. plumbing • don’t be scared of your terminal • GUI support is not 100% there yet • yes, it works on Windows. • plenty of import/interop tools
  • 17. workflows • simple & centralized • hardcore forking action
  • 18. simple & centralized • basic workflow for most projects • host your code at github, gitosis, etc
  • 20. create your project $ rails toast2.0 [... blah blah blah ...] $ cd toast2.0 $ git init Initialized empty Git repository in /Users/qrush/Dev/toast2.0/.git/
  • 21. more setup $ edit .gitignore $ git add . $ git commit -m “first commit” [master (root-commit)]: created 8c24524: quot;Initial commitquot; 41 files changed, 8452 insertions(+), 0 deletions(-) [.. files files files ..]
  • 22. DONE.
  • 23. Ok, maybe not. $ edit config/environment.rb $ script/generate migration AddPosts
  • 24. $ git status # On branch master # Changed but not updated: # (use quot;git add <file>...quot; to update what will be committe # (use quot;git checkout -- <file>...quot; to discard changes in w directory) # # modified: config/environment.rb # # Untracked files: # (use quot;git add <file>...quot; to include in what will be comm # # db/ no changes added to commit (use quot;git addquot; and/or quot;git commit
  • 25. $ git diff diff --git a/config/environment.rb b/config/environment.rb index 631a3a3..dfc184b 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -15,10 +15,7 @@ Rails::Initializer.run do |config| # config.load_paths += %W( #{RAILS_ROOT}/extras ) # Specify gems that this application depends on - # config.gem quot;bjquot; - # config.gem quot;hpricotquot;, :version => '0.6', :source => quot;ht - # config.gem quot;sqlite3-rubyquot;, :lib => quot;sqlite3quot; - # config.gem quot;aws-s3quot;, :lib => quot;aws/s3quot; + config.gem quot;thoughtbot-factory_girlquot;, :lib => quot;factory_gi
  • 26. $ git add db/ $ git status # On branch master # Changes to be committed: # (use quot;git reset HEAD <file>...quot; to unstage) # # new file: db/migrate/20090410120301_add_posts.rb # # Changed but not updated: # (use quot;git add <file>...quot; to update what will be committe # (use quot;git checkout -- <file>...quot; to discard changes in w # # config/environment.rb $ git commit -m “Adding posts migration”
  • 28. the grind Hack away, fix bugs vim / mate / etc Stage changes git add Review changes git status/diff Store changes git commit
  • 29. oh crap. git stash temporarily store changes git checkout file restore to last commit git reset file unstage file git reset --hard file unstage & restore file git checkout -f restore everything git revert commit undo a changeset
  • 30. hardcore forking action • Fork means another repo • Multiple repos means multiple branches
  • 31. branches • Cheap and local • Easy to switch • Try out new ideas • Merging is way smarter
  • 32. using a branch create new branch git checkout -b feature2 save some work git commit switch back git checkout master work is merged in git merge feature2 work played on top git rebase feature2 delete branch git branch -d feature2
  • 38. warning! • Rebasing is rewriting history • BAD for pushed commits • Keep the repo in fast-forward • (This doesn’t mean rebase is bad!)
  • 40. push away $ git remote add origin git@github.com:qrush/ toast2.0.git $ git push origin master Counting objects: 78, done. Compressing objects: 100% (71/71), done. Writing objects: 100% (78/78), 80.49 KiB, done. Total 78 (delta 21), reused 0 (delta 0) To git@github.com:qrush/toast2.0.git * [new branch] master -> master
  • 41. sharing github awesome. gitosis self-managed, ssh auth git instaweb instant web view git daemon local sharing gitjour osx over bonjour
  • 42. bringing down code git fetch remote: get updates git pull remote branch: • get updates from remote for branch • merge/rebase it into your current branch
  • 43. basic pulling $ git remote add mojombo git:// github.com/mojombo/jekyll.git $ git pull mojombo master
  • 44. go fetch $ git remote add mojombo git:// github.com/mojombo/jekyll.git $ git fetch mojombo $ gitx $ git merge mojombo/master
  • 49. Interactive Awesome. git rebase -i • Reordering commits • Splitting up changesets • Editing commits • Dropping them completely • Squashing multiple commits into one
  • 50. $ git rebase -i HEAD~6 pick a4d0f79 Adding posts in pick 7e71afd Revert quot;Adding posts inquot; pick 5e815ec Adding the right model pick 956f4ce Cleaning up model pick 6c6cdb4 Who needs tests? pick c3481fd Wrapping this up. Ship it. # Rebase bd0ceed..c3481fd onto bd0ceed # # Commands: # p, pick = use commit # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit
  • 51. $ git rebase -i HEAD~6 pick a4d0f79 Adding posts in squash 7e71afd Revert quot;Adding posts inquot; squash 5e815ec Adding the right model squash 956f4ce Cleaning up model squash 6c6cdb4 Who needs tests? squash c3481fd Wrapping this up. Ship it. # Rebase bd0ceed..c3481fd onto bd0ceed # # Commands: # p, pick = use commit # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit
  • 53. learn more • http://book.git-scm.com • http://gitready.com • http://learn.github.com • http://gitcasts.com • git internals peepcode
  • 54. thanks • kudos to: • Scott Chacon for awesome presentations • Charles Duan for his great git tutorial • Ben Hughes for bugging me to try git • You for listening/reading