SlideShare una empresa de Scribd logo
1 de 292
Descargar para leer sin conexión
Git going
         with      DVCS
                mental spoo n bending
90 minutes of
      v ia source c ode control



                           by Matthew McCullough of Ambient Ideas, LLC
DVCS
What?     Why?

          Basic Use




DVCS
What?     Why?

          Basic Use




                       Who’s       Theory
DVCS                  Using Git?
                             Deeper
                              Use
What?        Why?

              Basic Use




                           Who’s       Theory
DVCS                      Using Git?
                                 Deeper
                                  Use




         Usage Models

       GUIs     High Points
“   Git
    -noun                    sant or
            Slang. an unplea
    British
    cont  emptible  per son     ” ionar y
                      -Oxfo rd English Dict
contrasts
otistical bastard, and
“
I'm an eg
    I name all my projects
    after myself. Fi rst Linux,


    now   git. ”
                     -Lin us Torvalds
otistical bastard, and
“
I'm an eg
    I name all my projects
    after myself. Fi rst Linux,


    now   git. ”
                     -Lin us Torvalds
RCS

Folders
Clear
           Source   Case
            Safe
                    CVS
           PVCS
     RCS

Folders
Subversion
                            BitKeeper

                                  Perforce
                    Clear
           Source   Case
            Safe
                    CVS
           PVCS
     RCS

Folders
darcs
                                                     Mercurial


                                                           Bazaar

                                        Subversion
                            BitKeeper

                                  Perforce
                    Clear
           Source   Case
            Safe
                    CVS
           PVCS
     RCS

Folders
t
Source Code Control
Gi
Gi
Source Code Control

     t
CultureChange
Centralized
      VCS     =Don’t
Centralized
      VCS     =Don’t
Distributed
   VCS        = Whatever!
                   Do
Innovate
Experiment
Safely Be Wrong
Drive-by Assist
Crowd Source
Crowd Source
Crowd Source
Just show it to me!
No, not on that!
Download binaries
Git Distro Sources
      Win Cygwin
      Win msysGit
Git Distro Sources
      Win Cygwin
      Win msysGit
      Linux Source
      Linux Package manager
Git Distro Sources
      Win Cygwin
      Win msysGit
      Linux Source
      Linux Package manager
      Mac MacPorts
      Mac git-osx-installer
Git Distro Sources
      Win Cygwin
      Win msysGit
      Linux Source
      Linux Package manager
      Mac MacPorts
      Mac git-osx-installer
      Any JGit
Put it in your path
Identify yourself
Global Git Settings


git config --global user.name quot;Hal Smithquot;

git config --global user.email quot;hal@bnl.comquot;
Global Git Settings


 git config --list
Global Git Settings


 git config --list
                 t va lues
        t cu rren
  Outpu
Use it!
Creating a Repo

mkdir myproj.git
Creating a Repo

mkdir myproj.git
cd myproj.git
Creating a Repo

mkdir myproj.git
cd myproj.git
git init
Creating a Repo


       !
mkdir myproj.git


D O N E
cd myproj.git
git init
Thanks
for attending!
Knobs and Dials
145+ Commands
What?        Why?

              Basic Use




                           Who’s       Theory
DVCS                      Using Git?
                                 Deeper
                                  Use




         Usage Models

       GUIs     High Points
Who’s Got   Git?
Follow the
      DOTS
Symmetric
Symmetric
Distributed
pu
  sh
pu
  sh
push
push
pull
pull
Distributed
Hashes and
      Integrity
Index vs Hash

‣ Centralized VCS uses DB
  sequential index.

‣ Git uses SHA-1 hash.
SHA-1 Hash
‣ Hash for the sake of integrity.
‣ Keep the source of the hash.
SHA-1 Hash
‣ Hash for the sake of integrity.
‣ Keep the source of the hash.

                             ught
                       I tho ere
                           es w
                      hash r
                            fo
                            swo rds?
                        pas
Centralized VCS
Alice   Bob
Alice        Bob
1 = okay.htm
Alice        Bob
1 = okay.htm

2 = fine.htm
Alice                  Bob
1 = okay.htm

2 = fine.htm    svnsync
Alice                    Bob
1 = okay.htm             1 = okay.htm

2 = fine.htm    svnsync   2 = fine.htm
Alice                     Bob
1 = okay.htm             1 = okay.htm

2 = fine.htm    svnsync   2 = fine.htm

                         3 = good.htm
Alice                      Bob
1 = okay.htm              1 = okay.htm

2 = fine.htm     svnsync   2 = fine.htm

                          3 = good.htm

3 = great.htm
Alice                      Bob
1 = okay.htm              1 = okay.htm

2 = fine.htm     svnsync   2 = fine.htm

                          3 = good.htm

3 = great.htm   svnsync
Alice                      Bob
1 = okay.htm              1 = okay.htm

2 = fine.htm     svnsync   2 = fine.htm

4 = good.htm              3 = good.htm

3 = great.htm   svnsync   4 = great.htm
Alice                      Bob
 1 = okay.htm              1 = okay.htm

 2 = fine.htm     svnsync   2 = fine.htm


ERROR
 4 = good.htm              3 = good.htm

 3 = great.htm         ERROR
                 svnsync   4 = great.htm
Distributed VCS
Alice   Bob
Alice            Bob
a233b76 = okay.htm
Alice            Bob
a233b76 = okay.htm

d234ab1 = fine.htm
Alice                   Bob
a233b76 = okay.htm

d234ab1 = fine.htm    Sync
Alice                        Bob
a233b76 = okay.htm          a233b76 = okay.htm

d234ab1 = fine.htm    Sync   d234ab1 = fine.htm
Alice                        Bob
a233b76 = okay.htm          a233b76 = okay.htm

d234ab1 = fine.htm    Sync   d234ab1 = fine.htm

                            f90b12c = good.htm
Alice                        Bob
a233b76 = okay.htm           a233b76 = okay.htm

d234ab1 = fine.htm     Sync   d234ab1 = fine.htm

                             f90b12c = good.htm

ae42ba0 = great.htm
Alice                        Bob
a233b76 = okay.htm           a233b76 = okay.htm

d234ab1 = fine.htm     Sync   d234ab1 = fine.htm

                             f90b12c = good.htm

ae42ba0 = great.htm   Sync
Alice                        Bob
a233b76 = okay.htm           a233b76 = okay.htm

d234ab1 = fine.htm     Sync   d234ab1 = fine.htm

f90b12c = good.htm           f90b12c = good.htm

ae42ba0 = great.htm   Sync   ae42ba0 = great.htm
Hashable Objects

‣ Blob
‣ Tree
‣ Commit
‣ Tag
http://book.git-scm.com/1_the_git_object_model.html
http://book.git-scm.com/1_the_git_object_model.html
http://book.git-scm.com/1_the_git_object_model.html
http://book.git-scm.com/1_the_git_object_model.html
Hash Benefits

Independence
‣ Time & location separation from sequence # of
  checkin.
‣ Easy merging of repositories
‣ Easy identification of what needs to be synced
Hash Benefits

Integrity
‣ Identifies damaged repos.
‣ Prevents modification of published history.
‣ Unique to file size and contents.
Hash Benefits

Tags
‣ Cryptographically sign tags by GPG.
‣ Guaranteeing the repo’s state at a point
  in time.
Location,Location,Location
Single Stage Thinking
      of Subversion
Subversion
‣   svn commit
‣   Adds everything modified.
‣   “committed” locally and on the server.
‣   Must list if you want specific files.
‣   What if you check in your password?
$ echo //COMMENTS >> Matt1.java
$ echo //THOUGHTS >> Matt2.java
$ echo //COMMENTS >> Matt1.java
$ echo //THOUGHTS >> Matt2.java

$ svn status
M      Matt1.java
M      Matt2.java
$ echo //COMMENTS >> Matt1.java
$ echo //THOUGHTS >> Matt2.java

$ svn status
M      Matt1.java
M      Matt2.java

$ svn commit -m'Matts checkin'
Adding         Matt1.java
Adding         Matt2.java
Transmitting file data .
Committed revision 2.
Three Stage Thinking
        of Git
Git
‣   git add
‣   git commit
‣   git push
‣   Commits only what is added to the index.
‣   Opportunity to change history locally.
‣   Selectively share with other repos.
repo
git clone git://somedomain/myproj.git   B uild
cd myproj.git
repo
git clone git://somedomain/myproj.git   B uild
cd myproj.git
                                  dex
                        pda te in
git checkout master   U
repo
git clone git://somedomain/myproj.git   B uild
cd myproj.git
                                  dex
                        pda te in
git checkout master   U

echo ‘//Comments’ >> ClassOne.java         or king
echo ‘//Thoughts’ >> ClassTwo.java E dit w
repo
git clone git://somedomain/myproj.git      B uild
cd myproj.git
                                    dex
                          pda te in
git checkout master     U

echo ‘//Comments’ >> ClassOne.java         or king
echo ‘//Thoughts’ >> ClassTwo.java E dit w

                              to i ndex
git add ClassOne.java     Add                    epo
                                        ave to r
git commit -m’Added     comments’ S
repo
git clone git://somedomain/myproj.git       B uild
cd myproj.git
                                      dex
                            pda te in
git checkout master       U

echo ‘//Comments’ >> ClassOne.java         or king
echo ‘//Thoughts’ >> ClassTwo.java E dit w

                              to i ndex
git   add ClassOne.java   Add                    epo
                                        ave to r
git   commit -m’Added comments’ S
                     st ash
git   stash Pus h to
Remote
        is like a special
Stash
                            Repo




                     Index
   Working
Remote
        is like a special
Stash
                            Repo




                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone




                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout




                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files



                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash

                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index         git stash apply
   Working
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index         git stash apply
   Working                         git add
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index         git stash apply
   Working                         git add
                                   git commit
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index         git stash apply
   Working                         git add
                                   git commit
                                   git push
Remote
        is like a special
Stash
                            Repo
                                   git clone
                                   git checkout
                                   edit experiment files
                                   git stash
                                   test buggy files
                     Index         git stash apply
   Working                         git add
                                   git commit
                                   git push
What does this   buy me?
$ echo //MYD0GSNAM3 >> mattfile1.txt
$ echo //NewText2 >> mattfile2.txt
$ echo //MYD0GSNAM3 >> mattfile1.txt
$ echo //NewText2 >> mattfile2.txt

$ git status
# On branch master
# Changed but not updated:
#       modified:   mattfile1.txt
#       modified:   mattfile2.txt
$ echo //MYD0GSNAM3 >> mattfile1.txt
$ echo //NewText2 >> mattfile2.txt

$ git status
# On branch master
# Changed but not updated:
#       modified:   mattfile1.txt
#       modified:   mattfile2.txt
                                  o in dex
                              int
$ git add mattfile1.txt   Put
$ echo //MYD0GSNAM3 >> mattfile1.txt
$ echo //NewText2 >> mattfile2.txt

$ git status
# On branch master
# Changed but not updated:
#       modified:   mattfile1.txt
#       modified:   mattfile2.txt
                                  o in dex
                              int
$ git add mattfile1.txt   Put
                                          to r epo
                                    S ave
$ git commit -m'Matts pw checkin'
[master]: created ddcdf18: quot;Matts pw checkinquot;
 1 files changed, 1 insertions(+), 0 deletions(-)
#$%^&!
I just committed my password!
Change History
$ git reset --hard HEAD^
HEAD is now at 9de4cd3 First checkin

$ git log
commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993
Author: Matthew McCullough
<matthewm@ambientideas.com>
Date:   Wed Mar 4 23:09:17 2009 -0700
    First checkin
Change History
                                              com mit
                                        the
                                w a way
$ git reset --hard HEAD^  T hro
HEAD is now at 9de4cd3 First checkin

$ git log
commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993
Author: Matthew McCullough
<matthewm@ambientideas.com>
Date:   Wed Mar 4 23:09:17 2009 -0700
    First checkin
Change History
                                              com mit
                                        the
                                w a way
$ git reset --hard HEAD^  T hro
HEAD is now at 9de4cd3 First checkin

$ git log
commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993
Author: Matthew McCullough
<matthewm@ambientideas.com>
Date:   Wed Mar 4 23:09:17 2009 -0700
    First checkin
Sharing
Serving It Up
          Protocols
           ‣ GIT
           ‣ SSH
             ‣ SCP
           ‣ Local file system
             ‣ SAMBA
           ‣ HTTP
             ‣ WebDAV
           ‣ rsync
Serving It Up
Network
‣ git instaweb. Built in, read-only, HTTP.
‣ git daemon. Custom socket language.
‣ gitosis. Easy permissions control.
‣ github. Open source & private repos.
‣ ssh. OS controlled permissions.
Serving It Up

Filesystem
‣ Local folders. Yes, they can be “remotes.”
‣ Mapped network drives. Just like folders.
aem on
git clone git://somehost.org/myproj.git   g it d
aem on
git clone git://somehost.org/myproj.git   g it d

git clone mccm06@somehost.org:myproj.git           SSH
aem on
git clone git://somehost.org/myproj.git    g it d

git clone mccm06@somehost.org:myproj.git            SSH

git clone http://somehost.org/myproj.git    H TTP
aem on
git clone git://somehost.org/myproj.git        g it d

git clone mccm06@somehost.org:myproj.git                SSH

git clone http://somehost.org/myproj.git        H TTP

                                     sys tem
git clone ~/work/myproj.git   File
aem on
git clone git://somehost.org/myproj.git        g it d

git clone mccm06@somehost.org:myproj.git                SSH

git clone http://somehost.org/myproj.git        H TTP

                                     sys tem
git clone ~/work/myproj.git   File
                                              rk d rive
                                       Ne two
git clone z:someservermyproj.git
Merge & Rebase
Cheap Branches
Cheap Branches
git show-branch --all
git branch -a

‣Local branch
 ‣localbranchname
‣Remote
 ‣remote/branchname
Merge Anything
Merge Anything
git merge --no-commit <sourcebranch>
git merge --squash <sourcebranch>
git merge <sourcebranch1> <sourcebranch2>


‣Selectable merge strategy
‣Octopus: More than one
‣Review before committing
‣Flatten micro-checkins
Rebase for Clarity
Rebase for Clarity
git checkout myfeaturebranch
git rebase master

‣Cleaner history than a merge.
‣Fast forwards original branch.
‣Lets you see “how trunk will act” before you merge.
‣Reposition your feature branch’s start point.
‣Makes for simpler merge graphs.
M
                 da
             S er
                   r
              ta g
                    d
                n e


Master/Trunk/MainLatest
M
                 da
             S er
                   r
              ta g
                    d
                n e


Master/Trunk/MainLatest
                          a32
ard                                   Bra
    d
   n e
 ta g
                                     a32      n   ch
S er

           Master/Trunk/MainLatest
   M                                 2e2
ard                                   Bra
    d
   n e
 ta g
                                     a32      n   ch
S er

           Master/Trunk/MainLatest
                                                       d19
   M                                 2e2
ard                                   Bra
    d
   n e
 ta g
                                     a32      n   ch
S er

           Master/Trunk/MainLatest
                                                       d19
   M                                 2e2



                                     8b3
ard                                   Bra
    d
   n e
 ta g
                                     a32      n   ch
S er

           Master/Trunk/MainLatest
                                                       d19
   M                                 2e2


                                                       e69
                                     8b3
ard                                   Bra
    d
   n e
 ta g
                                     a32      n   ch
S er

           Master/Trunk/MainLatest
                                                       d19
   M                                 2e2


                                                       e69
                                     8b3

                                              erge
                                             M
                                     9f1
Rebasing


Master/Trunk/MainLatest
Rebasing


Master/Trunk/MainLatest
                          a32
Rebasing


Master/Trunk/MainLatest
                           a32

                   2e2
                          Bra
                         ch  n
Bra
    sing                             a32
                                              n   ch
  ba

           Master/Trunk/MainLatest
Re                                   2e2               d19
Bra
    sing                             a32
                                              n   ch
  ba

           Master/Trunk/MainLatest
Re                                   2e2               d19

                                     8b3
Bra
    sing                             a32
                                              n   ch
  ba

           Master/Trunk/MainLatest
Re                                   2e2               d19

                                     8b3
                                                       e69
Master/Trunk/MainLatest
                           a32

                    2e2

              8b3
             Bra
             ch n

       d19


e69




Rebase
a32




Master/Trunk/MainLatest
                          2e2

                          8b3   Bra
                                   n   ch

                          d19               d19



                                Me
                                 rg
                                   e
                          e69               e69
WorkingOffline
Offline Anything
 Checkin
Offline Anything
 Checkin
 Add
 Branch
 List change log
 Grep history
 Rewrite history
 Stash
 Merge
 Label
 Remove
Offline Anything
 Checkin
 Add
 Branch
 List change log
 Grep history
 Rewrite history
 Stash
 Merge
 Label
 Remove
 practically everything but push
Offline Anything
 Checkin
 Add
 Branch
 List change log
 Grep history
 Rewrite history
 Stash
 Merge
 Label
 Remove
 practically everything but push
Hooray! Another
checkin to my latest OSS
        project!
Hooray! Another
             checkin to my latest OSS
                     project!




   I think I liked
subversion better...
Speed
git: git
hg: mercurial
bzr: bazaar
Init               Add               Status               Diff
                                                                                      Branch (Cold/Hot)




git   hg     bzr   git   hg    bzr   git     hg     bzr   git   hg     bzr

      Tag                Log         Commit (Lg)          Commit (Sm)




                                                                             git c      git h    hg c     hg h     bzr c bzr h
git   hg     bzr   git   hg    bzr   git     hg     bzr   git   hg     bzr




                                                                                     data from http://whygitisbetterthanx.com/#git-is-fast
10
 to
     100 times
       Faster
VCS Interop
Subversion
git svn clone http://unfurl.com/trunk
git svn dcommit
Subversion
git svn clone http://unfurl.com/trunk
git svn dcommit


‣ First class compatibility.
Subversion
git svn clone http://unfurl.com/trunk
git svn dcommit


‣ First class compatibility.
‣ Round trip support.
Subversion
git svn clone http://unfurl.com/trunk
git svn dcommit


‣ First class compatibility.
‣ Round trip support.
‣ Git commits = svn commits.
Migration

‣ git svn clone
Migration

‣ git svn clone

‣ Power off your Subversion server.
What?        Why?

              Basic Use




                           Who’s       Theory
DVCS                      Using Git?
                                 Deeper
                                  Use




         Usage Models

       GUIs     High Points
UsageModels
Centralized
Central
 Repo
Centralized
Central
 Repo
Repo
               Blessed




Dictatorship
Repo
               Blessed




Dictatorship
Repo
               Blessed




Dictatorship
Repo
               Blessed




Dictatorship
Repo
               Blessed




Dictatorship
Certified




                         Integration Managed
           Development
 Repo         Repo
Certified




                         Integration Managed
           Development
 Repo         Repo
Certified




                         Integration Managed
           Development
 Repo         Repo
Certified




                         Integration Managed
           Development
 Repo         Repo
Mirror           Mirror

Certified       Development
 Repo             Repo




                                Mirrored
Mirror           Mirror

Certified       Development
 Repo             Repo




                                Mirrored
Mirror           Mirror

Certified       Development
 Repo             Repo




                                Mirrored
Mirror           Mirror

Certified       Development
 Repo             Repo




                                Mirrored
Mirror           Mirror

Certified       Development
 Repo             Repo




                                Mirrored
☚ Private            Public ☛




                   GitHub




Custom + Public Contrib
☚ Private            Public ☛




                   GitHub




Custom + Public Contrib
☚ Private               Public ☛




         Customized
                      GitHub




Custom + Public Contrib
☚ Private               Public ☛




         Customized
                      GitHub




Custom + Public Contrib
☚ Private               Public ☛




         Customized
                      GitHub




Custom + Public Contrib
GUIs
GitX
GitSafe
GitK
GitGUI
EGit
ci a l !
        O f fi
It ’s
4
reasons
Cherry Pick



❹
Cherry Pick



❹
Cherry Pick

‣git



           ❹
       cherry-pick a5b2ee
Cherry Pick

‣git



             ❹
       cherry-pick a5b2ee

‣Merge in just one commit.
Cherry Pick

‣git



             ❹
       cherry-pick a5b2ee

‣Merge in just one commit.
‣When you want a nugget, not a branchload.
Bisect Bugs



❸
Bisect Bugs



❸
Bisect Bugs

‣git



           ❸
       bisect run mvn test
Bisect Bugs

‣git



              ❸
       bisect run mvn test

‣Binary-search for bug.
Bisect Bugs

‣git



              ❸
       bisect run mvn test

‣Binary-search for bug.
‣Manual or automated modes.
Squash Verbosity



  ❷
Squash Verbosity



  ❷
Squash Verbosity



           ❷
‣git   merge --squash mybranch
Squash Verbosity



             ❷
‣git   merge --squash mybranch

‣Reduce all your micro-checkins to block commits.
Squash Verbosity



              ❷
‣git   merge --squash mybranch

‣Reduce all your micro-checkins to block commits.
‣Make mistakes, revise, checkin without hesitation.
Squash Verbosity



              ❷
‣git   merge --squash mybranch

‣Reduce all your micro-checkins to block commits.
‣Make mistakes, revise, checkin without hesitation.
‣Great for SVN compatibility.
Search History



 ❶
Search History



 ❶
Search History

‣git



           ❶
       grep SomeText HEAD^^^
Search History

‣git



             ❶
       grep SomeText HEAD^^^

‣Search in file history without checkout.
Search History

‣git



             ❶
       grep SomeText HEAD^^^

‣Search in file history without checkout.
‣Greps contents.
emerging Control
     Version
Twitter
 @matthewmccull             Matthew
Blog
 http://www.ambientideas.com/blog
         sidebar has all my social media links


Email
 matthewm@ambientideas.com
GitHub
 http://github.com/matthewmccullough
Resources
Git Homepage
http://git-scm.com

Directed Acrylic Graph
http://en.wikipedia.org/wiki/Directed_acyclic_graph

Git for Computer Scientists
http://eagain.net/articles/git-for-computer-scientists/

Git Treeish
http://book.git-scm.com/4_git_treeishes.html
Resources
Git Docs
http://www.kernel.org/pub/software/scm/git/docs/

Git Magic eBook
http://www-cs-students.stanford.edu/~blynn/gitmagic/book.pdf

Linus Torvald’s Git talk at Google
http://www.youtube.com/watch?v=4XpnKHJAok8

CygWin
http://www.cygwin.com
Resources
MSysGit
http://code.google.com/p/msysgit

Git Cheetah
http://code.google.com/p/msysgit/wiki/GitCheetah

Matthew’s Git Bookmarks
http://delicious.com/matthew.mccullough/git

Matthew’s Bash Prompt
http://gist.github.com/47267
Image Credits
‣   http://www.ambientideasphotography.com
‣   http://flickr.com/photos/lenore-m/2903856664/
‣   http://en.wikipedia.org/wiki/Git_(software)
‣   http://flickr.com/photos/karenhorton/1583513014/
‣   http://flickr.com/photos/mashdnart/2545782407/
‣   http://commons.wikimedia.org/wiki/
    File:Small_Boy_nuclear_test_1962.jpg
‣   http://www.flickr.com/photos/knmurphy/2506896257/
‣   http://www.flickr.com/photos/albyspace/1022035568/
‣   http://flickr.com/photos/michaelhays/3070238360/
‣   http://flickr.com/photos/d_vdm/509996632/

Más contenido relacionado

Similar a Git Going With DVCS v1.5.1

Becoming a Git Master - Nicola Paolucci
Becoming a Git Master - Nicola PaolucciBecoming a Git Master - Nicola Paolucci
Becoming a Git Master - Nicola PaolucciAtlassian
 
Progressive Revision Control
Progressive Revision ControlProgressive Revision Control
Progressive Revision Controlcollabock
 
That's (g)it! par Sébastien Dawans CETIC
That's (g)it! par Sébastien Dawans CETICThat's (g)it! par Sébastien Dawans CETIC
That's (g)it! par Sébastien Dawans CETICLa FeWeb
 
Boxen: How to Manage an Army of Laptops
Boxen: How to Manage an Army of LaptopsBoxen: How to Manage an Army of Laptops
Boxen: How to Manage an Army of LaptopsPuppet
 
Deep dark-side of git: How git works internally
Deep dark-side of git: How git works internallyDeep dark-side of git: How git works internally
Deep dark-side of git: How git works internallySeongJae Park
 
Ninja Git: Save Your Master
Ninja Git: Save Your MasterNinja Git: Save Your Master
Ninja Git: Save Your MasterNicola Paolucci
 
Clearly, I Have Made Some Bad Decisions
Clearly, I Have Made Some Bad DecisionsClearly, I Have Made Some Bad Decisions
Clearly, I Have Made Some Bad DecisionsJonathan Hitchcock
 
Git Started With Git
Git Started With GitGit Started With Git
Git Started With GitNick Quaranto
 
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
 
Git Basics at Rails Underground
Git Basics at Rails UndergroundGit Basics at Rails Underground
Git Basics at Rails UndergroundAriejan de Vroom
 
Git Basics - RubyFest 2009
Git Basics - RubyFest 2009Git Basics - RubyFest 2009
Git Basics - RubyFest 2009Ariejan de Vroom
 
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015DevOpsDays Tel Aviv
 
Hands-on VeriFast with STM32 microcontroller
Hands-on VeriFast with STM32 microcontrollerHands-on VeriFast with STM32 microcontroller
Hands-on VeriFast with STM32 microcontrollerKiwamu Okabe
 
Free The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own DomainFree The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own DomainKen Collins
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsLee Hanxue
 

Similar a Git Going With DVCS v1.5.1 (20)

Git Going With DVCS v1.3
Git Going With DVCS v1.3Git Going With DVCS v1.3
Git Going With DVCS v1.3
 
Becoming a Git Master - Nicola Paolucci
Becoming a Git Master - Nicola PaolucciBecoming a Git Master - Nicola Paolucci
Becoming a Git Master - Nicola Paolucci
 
Git introduction
Git introductionGit introduction
Git introduction
 
Git
GitGit
Git
 
Progressive Revision Control
Progressive Revision ControlProgressive Revision Control
Progressive Revision Control
 
That's (g)it! par Sébastien Dawans CETIC
That's (g)it! par Sébastien Dawans CETICThat's (g)it! par Sébastien Dawans CETIC
That's (g)it! par Sébastien Dawans CETIC
 
Boxen: How to Manage an Army of Laptops
Boxen: How to Manage an Army of LaptopsBoxen: How to Manage an Army of Laptops
Boxen: How to Manage an Army of Laptops
 
Deep dark-side of git: How git works internally
Deep dark-side of git: How git works internallyDeep dark-side of git: How git works internally
Deep dark-side of git: How git works internally
 
Ninja Git: Save Your Master
Ninja Git: Save Your MasterNinja Git: Save Your Master
Ninja Git: Save Your Master
 
Clearly, I Have Made Some Bad Decisions
Clearly, I Have Made Some Bad DecisionsClearly, I Have Made Some Bad Decisions
Clearly, I Have Made Some Bad Decisions
 
Git Started With Git
Git Started With GitGit Started With Git
Git Started With 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
 
Git Basics at Rails Underground
Git Basics at Rails UndergroundGit Basics at Rails Underground
Git Basics at Rails Underground
 
Git Basics - RubyFest 2009
Git Basics - RubyFest 2009Git Basics - RubyFest 2009
Git Basics - RubyFest 2009
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
 
Hands-on VeriFast with STM32 microcontroller
Hands-on VeriFast with STM32 microcontrollerHands-on VeriFast with STM32 microcontroller
Hands-on VeriFast with STM32 microcontroller
 
Free The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own DomainFree The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own Domain
 
Git
GitGit
Git
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: Foundations
 

Más de Matthew McCullough

Using Git and GitHub Effectively at Emerge Interactive
Using Git and GitHub Effectively at Emerge InteractiveUsing Git and GitHub Effectively at Emerge Interactive
Using Git and GitHub Effectively at Emerge InteractiveMatthew McCullough
 
All About GitHub Pull Requests
All About GitHub Pull RequestsAll About GitHub Pull Requests
All About GitHub Pull RequestsMatthew McCullough
 
Git Graphs, Hashes, and Compression, Oh My
Git Graphs, Hashes, and Compression, Oh MyGit Graphs, Hashes, and Compression, Oh My
Git Graphs, Hashes, and Compression, Oh MyMatthew McCullough
 
Git and GitHub at the San Francisco JUG
 Git and GitHub at the San Francisco JUG Git and GitHub at the San Francisco JUG
Git and GitHub at the San Francisco JUGMatthew McCullough
 
Migrating from Subversion to Git and GitHub
Migrating from Subversion to Git and GitHubMigrating from Subversion to Git and GitHub
Migrating from Subversion to Git and GitHubMatthew McCullough
 
Build Lifecycle Craftsmanship for the Transylvania JUG
Build Lifecycle Craftsmanship for the Transylvania JUGBuild Lifecycle Craftsmanship for the Transylvania JUG
Build Lifecycle Craftsmanship for the Transylvania JUGMatthew McCullough
 
Git Going for the Transylvania JUG
Git Going for the Transylvania JUGGit Going for the Transylvania JUG
Git Going for the Transylvania JUGMatthew McCullough
 
Transylvania JUG Pre-Meeting Announcements
Transylvania JUG Pre-Meeting AnnouncementsTransylvania JUG Pre-Meeting Announcements
Transylvania JUG Pre-Meeting AnnouncementsMatthew McCullough
 
Game Theory for Software Developers at the Boulder JUG
Game Theory for Software Developers at the Boulder JUGGame Theory for Software Developers at the Boulder JUG
Game Theory for Software Developers at the Boulder JUGMatthew McCullough
 
Cascading Through Hadoop for the Boulder JUG
Cascading Through Hadoop for the Boulder JUGCascading Through Hadoop for the Boulder JUG
Cascading Through Hadoop for the Boulder JUGMatthew McCullough
 

Más de Matthew McCullough (20)

Using Git and GitHub Effectively at Emerge Interactive
Using Git and GitHub Effectively at Emerge InteractiveUsing Git and GitHub Effectively at Emerge Interactive
Using Git and GitHub Effectively at Emerge Interactive
 
All About GitHub Pull Requests
All About GitHub Pull RequestsAll About GitHub Pull Requests
All About GitHub Pull Requests
 
Adam Smith Builds an App
Adam Smith Builds an AppAdam Smith Builds an App
Adam Smith Builds an App
 
Git's Filter Branch Command
Git's Filter Branch CommandGit's Filter Branch Command
Git's Filter Branch Command
 
Git Graphs, Hashes, and Compression, Oh My
Git Graphs, Hashes, and Compression, Oh MyGit Graphs, Hashes, and Compression, Oh My
Git Graphs, Hashes, and Compression, Oh My
 
Git and GitHub at the San Francisco JUG
 Git and GitHub at the San Francisco JUG Git and GitHub at the San Francisco JUG
Git and GitHub at the San Francisco JUG
 
Finding Things in Git
Finding Things in GitFinding Things in Git
Finding Things in Git
 
Git and GitHub for RallyOn
Git and GitHub for RallyOnGit and GitHub for RallyOn
Git and GitHub for RallyOn
 
Migrating from Subversion to Git and GitHub
Migrating from Subversion to Git and GitHubMigrating from Subversion to Git and GitHub
Migrating from Subversion to Git and GitHub
 
Git Notes and GitHub
Git Notes and GitHubGit Notes and GitHub
Git Notes and GitHub
 
Intro to Git and GitHub
Intro to Git and GitHubIntro to Git and GitHub
Intro to Git and GitHub
 
Build Lifecycle Craftsmanship for the Transylvania JUG
Build Lifecycle Craftsmanship for the Transylvania JUGBuild Lifecycle Craftsmanship for the Transylvania JUG
Build Lifecycle Craftsmanship for the Transylvania JUG
 
Git Going for the Transylvania JUG
Git Going for the Transylvania JUGGit Going for the Transylvania JUG
Git Going for the Transylvania JUG
 
Transylvania JUG Pre-Meeting Announcements
Transylvania JUG Pre-Meeting AnnouncementsTransylvania JUG Pre-Meeting Announcements
Transylvania JUG Pre-Meeting Announcements
 
Game Theory for Software Developers at the Boulder JUG
Game Theory for Software Developers at the Boulder JUGGame Theory for Software Developers at the Boulder JUG
Game Theory for Software Developers at the Boulder JUG
 
Cascading Through Hadoop for the Boulder JUG
Cascading Through Hadoop for the Boulder JUGCascading Through Hadoop for the Boulder JUG
Cascading Through Hadoop for the Boulder JUG
 
JQuery Mobile
JQuery MobileJQuery Mobile
JQuery Mobile
 
R Data Analysis Software
R Data Analysis SoftwareR Data Analysis Software
R Data Analysis Software
 
Please, Stop Using Git
Please, Stop Using GitPlease, Stop Using Git
Please, Stop Using Git
 
Dr. Strangedev
Dr. StrangedevDr. Strangedev
Dr. Strangedev
 

Último

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxPoojaSen20
 

Último (20)

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
 

Git Going With DVCS v1.5.1

  • 1. Git going with DVCS mental spoo n bending 90 minutes of v ia source c ode control by Matthew McCullough of Ambient Ideas, LLC
  • 3. What? Why? Basic Use DVCS
  • 4. What? Why? Basic Use Who’s Theory DVCS Using Git? Deeper Use
  • 5. What? Why? Basic Use Who’s Theory DVCS Using Git? Deeper Use Usage Models GUIs High Points
  • 6. Git -noun sant or Slang. an unplea British cont emptible per son ” ionar y -Oxfo rd English Dict
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. otistical bastard, and “ I'm an eg I name all my projects after myself. Fi rst Linux, now git. ” -Lin us Torvalds
  • 17. otistical bastard, and “ I'm an eg I name all my projects after myself. Fi rst Linux, now git. ” -Lin us Torvalds
  • 18.
  • 20. Clear Source Case Safe CVS PVCS RCS Folders
  • 21. Subversion BitKeeper Perforce Clear Source Case Safe CVS PVCS RCS Folders
  • 22. darcs Mercurial Bazaar Subversion BitKeeper Perforce Clear Source Case Safe CVS PVCS RCS Folders
  • 26.
  • 27.
  • 28.
  • 29.
  • 30. Centralized VCS =Don’t
  • 31. Centralized VCS =Don’t
  • 32. Distributed VCS = Whatever! Do
  • 40.
  • 41. Just show it to me!
  • 42.
  • 43. No, not on that!
  • 44.
  • 46. Git Distro Sources Win Cygwin Win msysGit
  • 47. Git Distro Sources Win Cygwin Win msysGit Linux Source Linux Package manager
  • 48. Git Distro Sources Win Cygwin Win msysGit Linux Source Linux Package manager Mac MacPorts Mac git-osx-installer
  • 49. Git Distro Sources Win Cygwin Win msysGit Linux Source Linux Package manager Mac MacPorts Mac git-osx-installer Any JGit
  • 50. Put it in your path
  • 51.
  • 53. Global Git Settings git config --global user.name quot;Hal Smithquot; git config --global user.email quot;hal@bnl.comquot;
  • 54. Global Git Settings git config --list
  • 55. Global Git Settings git config --list t va lues t cu rren Outpu
  • 57. Creating a Repo mkdir myproj.git
  • 58. Creating a Repo mkdir myproj.git cd myproj.git
  • 59. Creating a Repo mkdir myproj.git cd myproj.git git init
  • 60. Creating a Repo ! mkdir myproj.git D O N E cd myproj.git git init
  • 63.
  • 64.
  • 66. What? Why? Basic Use Who’s Theory DVCS Using Git? Deeper Use Usage Models GUIs High Points
  • 67. Who’s Got Git?
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77. Follow the DOTS
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98. pu sh
  • 99. pu sh
  • 100.
  • 101.
  • 102. push
  • 103. push
  • 104.
  • 105.
  • 106. pull
  • 107. pull
  • 108.
  • 110. Hashes and Integrity
  • 111. Index vs Hash ‣ Centralized VCS uses DB sequential index. ‣ Git uses SHA-1 hash.
  • 112. SHA-1 Hash ‣ Hash for the sake of integrity. ‣ Keep the source of the hash.
  • 113. SHA-1 Hash ‣ Hash for the sake of integrity. ‣ Keep the source of the hash. ught I tho ere es w hash r fo swo rds? pas
  • 115. Alice Bob
  • 116. Alice Bob 1 = okay.htm
  • 117. Alice Bob 1 = okay.htm 2 = fine.htm
  • 118. Alice Bob 1 = okay.htm 2 = fine.htm svnsync
  • 119. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm
  • 120. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm 3 = good.htm
  • 121. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm 3 = good.htm 3 = great.htm
  • 122. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm 3 = good.htm 3 = great.htm svnsync
  • 123. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm 4 = good.htm 3 = good.htm 3 = great.htm svnsync 4 = great.htm
  • 124. Alice Bob 1 = okay.htm 1 = okay.htm 2 = fine.htm svnsync 2 = fine.htm ERROR 4 = good.htm 3 = good.htm 3 = great.htm ERROR svnsync 4 = great.htm
  • 126. Alice Bob
  • 127. Alice Bob a233b76 = okay.htm
  • 128. Alice Bob a233b76 = okay.htm d234ab1 = fine.htm
  • 129. Alice Bob a233b76 = okay.htm d234ab1 = fine.htm Sync
  • 130. Alice Bob a233b76 = okay.htm a233b76 = okay.htm d234ab1 = fine.htm Sync d234ab1 = fine.htm
  • 131. Alice Bob a233b76 = okay.htm a233b76 = okay.htm d234ab1 = fine.htm Sync d234ab1 = fine.htm f90b12c = good.htm
  • 132. Alice Bob a233b76 = okay.htm a233b76 = okay.htm d234ab1 = fine.htm Sync d234ab1 = fine.htm f90b12c = good.htm ae42ba0 = great.htm
  • 133. Alice Bob a233b76 = okay.htm a233b76 = okay.htm d234ab1 = fine.htm Sync d234ab1 = fine.htm f90b12c = good.htm ae42ba0 = great.htm Sync
  • 134. Alice Bob a233b76 = okay.htm a233b76 = okay.htm d234ab1 = fine.htm Sync d234ab1 = fine.htm f90b12c = good.htm f90b12c = good.htm ae42ba0 = great.htm Sync ae42ba0 = great.htm
  • 135. Hashable Objects ‣ Blob ‣ Tree ‣ Commit ‣ Tag
  • 140. Hash Benefits Independence ‣ Time & location separation from sequence # of checkin. ‣ Easy merging of repositories ‣ Easy identification of what needs to be synced
  • 141. Hash Benefits Integrity ‣ Identifies damaged repos. ‣ Prevents modification of published history. ‣ Unique to file size and contents.
  • 142. Hash Benefits Tags ‣ Cryptographically sign tags by GPG. ‣ Guaranteeing the repo’s state at a point in time.
  • 144. Single Stage Thinking of Subversion
  • 145. Subversion ‣ svn commit ‣ Adds everything modified. ‣ “committed” locally and on the server. ‣ Must list if you want specific files. ‣ What if you check in your password?
  • 146. $ echo //COMMENTS >> Matt1.java $ echo //THOUGHTS >> Matt2.java
  • 147. $ echo //COMMENTS >> Matt1.java $ echo //THOUGHTS >> Matt2.java $ svn status M Matt1.java M Matt2.java
  • 148. $ echo //COMMENTS >> Matt1.java $ echo //THOUGHTS >> Matt2.java $ svn status M Matt1.java M Matt2.java $ svn commit -m'Matts checkin' Adding Matt1.java Adding Matt2.java Transmitting file data . Committed revision 2.
  • 150. Git ‣ git add ‣ git commit ‣ git push ‣ Commits only what is added to the index. ‣ Opportunity to change history locally. ‣ Selectively share with other repos.
  • 152. repo git clone git://somedomain/myproj.git B uild cd myproj.git dex pda te in git checkout master U
  • 153. repo git clone git://somedomain/myproj.git B uild cd myproj.git dex pda te in git checkout master U echo ‘//Comments’ >> ClassOne.java or king echo ‘//Thoughts’ >> ClassTwo.java E dit w
  • 154. repo git clone git://somedomain/myproj.git B uild cd myproj.git dex pda te in git checkout master U echo ‘//Comments’ >> ClassOne.java or king echo ‘//Thoughts’ >> ClassTwo.java E dit w to i ndex git add ClassOne.java Add epo ave to r git commit -m’Added comments’ S
  • 155. repo git clone git://somedomain/myproj.git B uild cd myproj.git dex pda te in git checkout master U echo ‘//Comments’ >> ClassOne.java or king echo ‘//Thoughts’ >> ClassTwo.java E dit w to i ndex git add ClassOne.java Add epo ave to r git commit -m’Added comments’ S st ash git stash Pus h to
  • 156. Remote is like a special Stash Repo Index Working
  • 157. Remote is like a special Stash Repo Index Working
  • 158. Remote is like a special Stash Repo git clone Index Working
  • 159. Remote is like a special Stash Repo git clone git checkout Index Working
  • 160. Remote is like a special Stash Repo git clone git checkout edit experiment files Index Working
  • 161. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash Index Working
  • 162. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index Working
  • 163. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index git stash apply Working
  • 164. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index git stash apply Working git add
  • 165. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index git stash apply Working git add git commit
  • 166. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index git stash apply Working git add git commit git push
  • 167. Remote is like a special Stash Repo git clone git checkout edit experiment files git stash test buggy files Index git stash apply Working git add git commit git push
  • 168. What does this buy me?
  • 169. $ echo //MYD0GSNAM3 >> mattfile1.txt $ echo //NewText2 >> mattfile2.txt
  • 170. $ echo //MYD0GSNAM3 >> mattfile1.txt $ echo //NewText2 >> mattfile2.txt $ git status # On branch master # Changed but not updated: # modified: mattfile1.txt # modified: mattfile2.txt
  • 171. $ echo //MYD0GSNAM3 >> mattfile1.txt $ echo //NewText2 >> mattfile2.txt $ git status # On branch master # Changed but not updated: # modified: mattfile1.txt # modified: mattfile2.txt o in dex int $ git add mattfile1.txt Put
  • 172. $ echo //MYD0GSNAM3 >> mattfile1.txt $ echo //NewText2 >> mattfile2.txt $ git status # On branch master # Changed but not updated: # modified: mattfile1.txt # modified: mattfile2.txt o in dex int $ git add mattfile1.txt Put to r epo S ave $ git commit -m'Matts pw checkin' [master]: created ddcdf18: quot;Matts pw checkinquot; 1 files changed, 1 insertions(+), 0 deletions(-)
  • 173. #$%^&! I just committed my password!
  • 174. Change History $ git reset --hard HEAD^ HEAD is now at 9de4cd3 First checkin $ git log commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993 Author: Matthew McCullough <matthewm@ambientideas.com> Date: Wed Mar 4 23:09:17 2009 -0700 First checkin
  • 175. Change History com mit the w a way $ git reset --hard HEAD^ T hro HEAD is now at 9de4cd3 First checkin $ git log commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993 Author: Matthew McCullough <matthewm@ambientideas.com> Date: Wed Mar 4 23:09:17 2009 -0700 First checkin
  • 176. Change History com mit the w a way $ git reset --hard HEAD^ T hro HEAD is now at 9de4cd3 First checkin $ git log commit 9de4cd3a3f24a3de3e804df84cc3321c7d0c9993 Author: Matthew McCullough <matthewm@ambientideas.com> Date: Wed Mar 4 23:09:17 2009 -0700 First checkin
  • 178. Serving It Up Protocols ‣ GIT ‣ SSH ‣ SCP ‣ Local file system ‣ SAMBA ‣ HTTP ‣ WebDAV ‣ rsync
  • 179. Serving It Up Network ‣ git instaweb. Built in, read-only, HTTP. ‣ git daemon. Custom socket language. ‣ gitosis. Easy permissions control. ‣ github. Open source & private repos. ‣ ssh. OS controlled permissions.
  • 180.
  • 181.
  • 182. Serving It Up Filesystem ‣ Local folders. Yes, they can be “remotes.” ‣ Mapped network drives. Just like folders.
  • 183. aem on git clone git://somehost.org/myproj.git g it d
  • 184. aem on git clone git://somehost.org/myproj.git g it d git clone mccm06@somehost.org:myproj.git SSH
  • 185. aem on git clone git://somehost.org/myproj.git g it d git clone mccm06@somehost.org:myproj.git SSH git clone http://somehost.org/myproj.git H TTP
  • 186. aem on git clone git://somehost.org/myproj.git g it d git clone mccm06@somehost.org:myproj.git SSH git clone http://somehost.org/myproj.git H TTP sys tem git clone ~/work/myproj.git File
  • 187. aem on git clone git://somehost.org/myproj.git g it d git clone mccm06@somehost.org:myproj.git SSH git clone http://somehost.org/myproj.git H TTP sys tem git clone ~/work/myproj.git File rk d rive Ne two git clone z:someservermyproj.git
  • 190. Cheap Branches git show-branch --all git branch -a ‣Local branch ‣localbranchname ‣Remote ‣remote/branchname
  • 192. Merge Anything git merge --no-commit <sourcebranch> git merge --squash <sourcebranch> git merge <sourcebranch1> <sourcebranch2> ‣Selectable merge strategy ‣Octopus: More than one ‣Review before committing ‣Flatten micro-checkins
  • 194. Rebase for Clarity git checkout myfeaturebranch git rebase master ‣Cleaner history than a merge. ‣Fast forwards original branch. ‣Lets you see “how trunk will act” before you merge. ‣Reposition your feature branch’s start point. ‣Makes for simpler merge graphs.
  • 195. M da S er r ta g d n e Master/Trunk/MainLatest
  • 196. M da S er r ta g d n e Master/Trunk/MainLatest a32
  • 197. ard Bra d n e ta g a32 n ch S er Master/Trunk/MainLatest M 2e2
  • 198. ard Bra d n e ta g a32 n ch S er Master/Trunk/MainLatest d19 M 2e2
  • 199. ard Bra d n e ta g a32 n ch S er Master/Trunk/MainLatest d19 M 2e2 8b3
  • 200. ard Bra d n e ta g a32 n ch S er Master/Trunk/MainLatest d19 M 2e2 e69 8b3
  • 201. ard Bra d n e ta g a32 n ch S er Master/Trunk/MainLatest d19 M 2e2 e69 8b3 erge M 9f1
  • 204. Rebasing Master/Trunk/MainLatest a32 2e2 Bra ch n
  • 205. Bra sing a32 n ch ba Master/Trunk/MainLatest Re 2e2 d19
  • 206. Bra sing a32 n ch ba Master/Trunk/MainLatest Re 2e2 d19 8b3
  • 207. Bra sing a32 n ch ba Master/Trunk/MainLatest Re 2e2 d19 8b3 e69
  • 208. Master/Trunk/MainLatest a32 2e2 8b3 Bra ch n d19 e69 Rebase
  • 209. a32 Master/Trunk/MainLatest 2e2 8b3 Bra n ch d19 d19 Me rg e e69 e69
  • 212. Offline Anything Checkin Add Branch List change log Grep history Rewrite history Stash Merge Label Remove
  • 213. Offline Anything Checkin Add Branch List change log Grep history Rewrite history Stash Merge Label Remove practically everything but push
  • 214. Offline Anything Checkin Add Branch List change log Grep history Rewrite history Stash Merge Label Remove practically everything but push
  • 215.
  • 216. Hooray! Another checkin to my latest OSS project!
  • 217. Hooray! Another checkin to my latest OSS project! I think I liked subversion better...
  • 218. Speed
  • 220. Init Add Status Diff Branch (Cold/Hot) git hg bzr git hg bzr git hg bzr git hg bzr Tag Log Commit (Lg) Commit (Sm) git c git h hg c hg h bzr c bzr h git hg bzr git hg bzr git hg bzr git hg bzr data from http://whygitisbetterthanx.com/#git-is-fast
  • 221.
  • 222. 10 to 100 times Faster
  • 224. Subversion git svn clone http://unfurl.com/trunk git svn dcommit
  • 225. Subversion git svn clone http://unfurl.com/trunk git svn dcommit ‣ First class compatibility.
  • 226. Subversion git svn clone http://unfurl.com/trunk git svn dcommit ‣ First class compatibility. ‣ Round trip support.
  • 227. Subversion git svn clone http://unfurl.com/trunk git svn dcommit ‣ First class compatibility. ‣ Round trip support. ‣ Git commits = svn commits.
  • 228.
  • 230. Migration ‣ git svn clone ‣ Power off your Subversion server.
  • 231. What? Why? Basic Use Who’s Theory DVCS Using Git? Deeper Use Usage Models GUIs High Points
  • 235. Repo Blessed Dictatorship
  • 236. Repo Blessed Dictatorship
  • 237. Repo Blessed Dictatorship
  • 238. Repo Blessed Dictatorship
  • 239. Repo Blessed Dictatorship
  • 240. Certified Integration Managed Development Repo Repo
  • 241. Certified Integration Managed Development Repo Repo
  • 242. Certified Integration Managed Development Repo Repo
  • 243. Certified Integration Managed Development Repo Repo
  • 244. Mirror Mirror Certified Development Repo Repo Mirrored
  • 245. Mirror Mirror Certified Development Repo Repo Mirrored
  • 246. Mirror Mirror Certified Development Repo Repo Mirrored
  • 247. Mirror Mirror Certified Development Repo Repo Mirrored
  • 248. Mirror Mirror Certified Development Repo Repo Mirrored
  • 249. ☚ Private Public ☛ GitHub Custom + Public Contrib
  • 250. ☚ Private Public ☛ GitHub Custom + Public Contrib
  • 251. ☚ Private Public ☛ Customized GitHub Custom + Public Contrib
  • 252. ☚ Private Public ☛ Customized GitHub Custom + Public Contrib
  • 253. ☚ Private Public ☛ Customized GitHub Custom + Public Contrib
  • 254. GUIs
  • 255. GitX
  • 257. GitK
  • 258. GitGUI
  • 259. EGit
  • 260.
  • 261. ci a l ! O f fi It ’s
  • 262.
  • 266. Cherry Pick ‣git ❹ cherry-pick a5b2ee
  • 267. Cherry Pick ‣git ❹ cherry-pick a5b2ee ‣Merge in just one commit.
  • 268. Cherry Pick ‣git ❹ cherry-pick a5b2ee ‣Merge in just one commit. ‣When you want a nugget, not a branchload.
  • 271. Bisect Bugs ‣git ❸ bisect run mvn test
  • 272. Bisect Bugs ‣git ❸ bisect run mvn test ‣Binary-search for bug.
  • 273. Bisect Bugs ‣git ❸ bisect run mvn test ‣Binary-search for bug. ‣Manual or automated modes.
  • 276. Squash Verbosity ❷ ‣git merge --squash mybranch
  • 277. Squash Verbosity ❷ ‣git merge --squash mybranch ‣Reduce all your micro-checkins to block commits.
  • 278. Squash Verbosity ❷ ‣git merge --squash mybranch ‣Reduce all your micro-checkins to block commits. ‣Make mistakes, revise, checkin without hesitation.
  • 279. Squash Verbosity ❷ ‣git merge --squash mybranch ‣Reduce all your micro-checkins to block commits. ‣Make mistakes, revise, checkin without hesitation. ‣Great for SVN compatibility.
  • 282. Search History ‣git ❶ grep SomeText HEAD^^^
  • 283. Search History ‣git ❶ grep SomeText HEAD^^^ ‣Search in file history without checkout.
  • 284. Search History ‣git ❶ grep SomeText HEAD^^^ ‣Search in file history without checkout. ‣Greps contents.
  • 285.
  • 286.
  • 287. emerging Control Version
  • 288. Twitter @matthewmccull Matthew Blog http://www.ambientideas.com/blog sidebar has all my social media links Email matthewm@ambientideas.com GitHub http://github.com/matthewmccullough
  • 289. Resources Git Homepage http://git-scm.com Directed Acrylic Graph http://en.wikipedia.org/wiki/Directed_acyclic_graph Git for Computer Scientists http://eagain.net/articles/git-for-computer-scientists/ Git Treeish http://book.git-scm.com/4_git_treeishes.html
  • 290. Resources Git Docs http://www.kernel.org/pub/software/scm/git/docs/ Git Magic eBook http://www-cs-students.stanford.edu/~blynn/gitmagic/book.pdf Linus Torvald’s Git talk at Google http://www.youtube.com/watch?v=4XpnKHJAok8 CygWin http://www.cygwin.com
  • 291. Resources MSysGit http://code.google.com/p/msysgit Git Cheetah http://code.google.com/p/msysgit/wiki/GitCheetah Matthew’s Git Bookmarks http://delicious.com/matthew.mccullough/git Matthew’s Bash Prompt http://gist.github.com/47267
  • 292. Image Credits ‣ http://www.ambientideasphotography.com ‣ http://flickr.com/photos/lenore-m/2903856664/ ‣ http://en.wikipedia.org/wiki/Git_(software) ‣ http://flickr.com/photos/karenhorton/1583513014/ ‣ http://flickr.com/photos/mashdnart/2545782407/ ‣ http://commons.wikimedia.org/wiki/ File:Small_Boy_nuclear_test_1962.jpg ‣ http://www.flickr.com/photos/knmurphy/2506896257/ ‣ http://www.flickr.com/photos/albyspace/1022035568/ ‣ http://flickr.com/photos/michaelhays/3070238360/ ‣ http://flickr.com/photos/d_vdm/509996632/