SlideShare une entreprise Scribd logo
1  sur  54
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances

Git et les systèmes de gestion de versions
Git et les systèmes de gestion de versionsGit et les systèmes de gestion de versions
Git et les systèmes de gestion de versionsAlice Loeser
 
Advanced Git Tutorial
Advanced Git TutorialAdvanced Git Tutorial
Advanced Git TutorialSage Sharp
 
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git버전관리를 들어본적 없는 사람들을 위한 DVCS - Git
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git민태 김
 
Présentation de git
Présentation de gitPrésentation de git
Présentation de gitJulien Blin
 
Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction TutorialThomas Rausch
 
Git - An Introduction
Git - An IntroductionGit - An Introduction
Git - An IntroductionBehzad Altaf
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsLee Hanxue
 
Git - Basic Crash Course
Git - Basic Crash CourseGit - Basic Crash Course
Git - Basic Crash CourseNilay Binjola
 
Git the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlGit the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlBecky Todd
 
Git and GitHub workflows
Git and GitHub workflowsGit and GitHub workflows
Git and GitHub workflowsArthur Shvetsov
 
Introduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsIntroduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsCarl Brown
 
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overviewGit and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overviewRueful Robin
 
git - eine praktische Einführung
git - eine praktische Einführunggit - eine praktische Einführung
git - eine praktische EinführungMarcel Eichner
 

Tendances (20)

Git et les systèmes de gestion de versions
Git et les systèmes de gestion de versionsGit et les systèmes de gestion de versions
Git et les systèmes de gestion de versions
 
Advanced Git Tutorial
Advanced Git TutorialAdvanced Git Tutorial
Advanced Git Tutorial
 
git and github
git and githubgit and github
git and github
 
Git n git hub
Git n git hubGit n git hub
Git n git hub
 
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git버전관리를 들어본적 없는 사람들을 위한 DVCS - Git
버전관리를 들어본적 없는 사람들을 위한 DVCS - Git
 
Git training v10
Git training v10Git training v10
Git training v10
 
Présentation de git
Présentation de gitPrésentation de git
Présentation de git
 
Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction Tutorial
 
Git - An Introduction
Git - An IntroductionGit - An Introduction
Git - An Introduction
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: Foundations
 
Git - Basic Crash Course
Git - Basic Crash CourseGit - Basic Crash Course
Git - Basic Crash Course
 
Git Grundlagen
Git GrundlagenGit Grundlagen
Git Grundlagen
 
Git the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlGit the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version control
 
Git and GitHub workflows
Git and GitHub workflowsGit and GitHub workflows
Git and GitHub workflows
 
Introduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsIntroduction to Git Commands and Concepts
Introduction to Git Commands and Concepts
 
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overviewGit and GitHub | Concept about Git and GitHub Process | Git Process overview
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
 
Advanced Git
Advanced GitAdvanced Git
Advanced Git
 
Git and git flow
Git and git flowGit and git flow
Git and git flow
 
Les bases de git
Les bases de gitLes bases de git
Les bases de git
 
git - eine praktische Einführung
git - eine praktische Einführunggit - eine praktische Einführung
git - eine praktische Einführung
 

En vedette

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
 

En vedette (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...
 

Similaire à 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
 

Similaire à 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
 

Dernier

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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
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
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
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...apidays
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Dernier (20)

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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
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
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
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...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 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