Slide 1

Slide 1 text

Git The fast version control system Jeroen Rosenberg @jeroenrosenberg

Slide 2

Slide 2 text

Table of contents  Short introduction to version control  Version control systems  Comparison with subversion  Distributed version control  Git usage  Basic operations  Solving conflicts  Branching as a core concept  Tooling  Conclusion Git - the fast version control system

Slide 3

Slide 3 text

Version control Short introduction Git - the fast version control system

Slide 4

Slide 4 text

Version control (1)  The management of changes to documents, programs, and other information stored as computer files  A system that maintains versions of files at progressive stages of development.  Every file  Has a full history of changes  Can be restored to any version  A communication tool, like email, but with code rather than human conversation Git - the fast version control system

Slide 5

Slide 5 text

Version control (2)  Benefits Git - the fast version control system

Slide 6

Slide 6 text

Version control (2)  Benefits  Allows a team to share code Git - the fast version control system

Slide 7

Slide 7 text

Version control (2)  Benefits  Allows a team to share code  Maintains separate “production” versions of code that are always deployable Git - the fast version control system

Slide 8

Slide 8 text

Version control (2)  Benefits  Allows a team to share code  Maintains separate “production” versions of code that are always deployable  Allows simultaneous development of different features on the same codebase Git - the fast version control system

Slide 9

Slide 9 text

Version control (2)  Benefits  Allows a team to share code  Maintains separate “production” versions of code that are always deployable  Allows simultaneous development of different features on the same codebase  Keeps track of all old versions of files Git - the fast version control system

Slide 10

Slide 10 text

Version control (2)  Benefits  Allows a team to share code  Maintains separate “production” versions of code that are always deployable  Allows simultaneous development of different features on the same codebase  Keeps track of all old versions of files  Prevents work being overwritten Git - the fast version control system

Slide 11

Slide 11 text

Glossary Some commonly used terms explained before moving on Git - the fast version control system

Slide 12

Slide 12 text

Key terms in version control   Branch a copy of a set of files under version control which may be developed at different speeds or in different ways   Checkout to copy the latest version of (a file in) the repository to your working copy   Commit to copy (a file in) your working copy back into the repository as a new version   Merge to combine multiple changes made to different working copies of the same files in the repository   Repository a (shared) database with the complete revision history of all files under version control   Trunk the unique line of development that is not a branch   Update to retrieve and integrate changes in the repository since the update.   Working copy your local copies of the files under version control you want to edit Git - the fast version control system

Slide 13

Slide 13 text

Version control systems Git - the fast version control system

Slide 14

Slide 14 text

Very limited and inflexible Concurrent Versions System (CVS) Git - the fast version control system

Slide 15

Slide 15 text

Very limited and inflexible Concurrent Versions System (CVS) Fills most of the holes found in CVS, but added nothing to its development model Subversion (SVN) Git - the fast version control system

Slide 16

Slide 16 text

Very limited and inflexible Concurrent Versions System (CVS) Fills most of the holes found in CVS, but added nothing to its development model Subversion (SVN) More feature rich and functional Git Git - the fast version control system

Slide 17

Slide 17 text

Comparison with SVN Subversion Git Git - the fast version control system

Slide 18

Slide 18 text

Comparison with SVN Subversion  Centralized Git  Distributed Git - the fast version control system

Slide 19

Slide 19 text

Comparison with SVN Subversion  Centralized  Branching can be a pain and is used sparingly Git  Distributed  Branching is very easy and is a core concept Git - the fast version control system

Slide 20

Slide 20 text

Comparison with SVN Subversion  Centralized  Branching can be a pain and is used sparingly  Conflicts frequently occur and renaming is not handled well Git  Distributed  Branching is very easy and is a core concept  Conflicts occur less frequent, renaming is properly handled Git - the fast version control system

Slide 21

Slide 21 text

Comparison with SVN Subversion  Centralized  Branching can be a pain and is used sparingly  Conflicts frequently occur and renaming is not handled well  Can be slow due to network latency Git  Distributed  Branching is very easy and is a core concept  Conflicts occur less frequent, renaming is properly handled  Very fast since less operations involve network latency Git - the fast version control system

Slide 22

Slide 22 text

Comparison with SVN Subversion  Centralized  Branching can be a pain and is used sparingly  Conflicts frequently occur and renaming is not handled well  Can be slow due to network latency  Can consume quite some disk space Git  Distributed  Branching is very easy and is a core concept  Conflicts occur less frequent, renaming is properly handled  Very fast since less operations involve network latency  Consumes 30 times less disk space Git - the fast version control system

Slide 23

Slide 23 text

Distributed version control The new generation of version control Git - the fast version control system

Slide 24

Slide 24 text

A basic, centralized version control system Users commit changes to the central repository and a new version is born to be checked out by other users Git - the fast version control system

Slide 25

Slide 25 text

A distributed version control system Each user has a full local copy of the repository. Users commit changes and when they want to share it, the push it to the shared repository Git - the fast version control system

Slide 26

Slide 26 text

Git usage Basic operations Git - the fast version control system

Slide 27

Slide 27 text

Tracking a project.. SVN Git $ svn checkout url $ git clone url Git - the fast version control system

Slide 28

Slide 28 text

Tracking a project.. SVN Git $ svn checkout url $ git clone url origin/ master doc src … master doc src … Mirror the central server Anything the main repository can do, you can do! Git - the fast version control system

Slide 29

Slide 29 text

Tracking a project.. SVN Git $ svn checkout url $ git clone url My project is tiny - git is overkill “Why would I carry a Swiss knife when I only want to open cans?” Git - the fast version control system

Slide 30

Slide 30 text

Tracking a project.. SVN Git $ svn checkout url $ git clone url Tiny projects should be scalable too! “You wouldn’t use Roman digits just because you perform calculations with small numbers, now would you?” Tiny projects may grow beyond your expectations “One day you’ll desperately need that hex wrench and you’re stuck with your plain can- opener” Git - the fast version control system

Slide 31

Slide 31 text

Tracking a project.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file $ svn rm file $ git rm file $ svn mv file $ git mv file $ svn commit $ git commit –a $ svn revert path $ git checkout path Pretty straightforwarded, huh? Git - the fast version control system

Slide 32

Slide 32 text

Advanced committing… SVN Git … … $ svn mv file $ git mv file $ svn commit $ git commit –a $ svn revert path $ git checkout path What if you screw up? # re-edit the metadata and update the tree $ git commit --amend or # toss your latest commit away without changing the working tree $ git reset HEAD^ Git - the fast version control system

Slide 33

Slide 33 text

Solving conflicts Instant merging Git - the fast version control system

Slide 34

Slide 34 text

Closer look at pulling.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … Git - the fast version control system

Slide 35

Slide 35 text

Auto-merging.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … What actually happens… # Fetch latest changes from origin $ git fetch # Merge fetched changes into current branch $ git merge refs/heads/master Git - the fast version control system

Slide 36

Slide 36 text

Auto-merging.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … What actually happens… Recursive merge strategy – create a merged reference tree of common ancestors for three-way merge   fewer merge conflicts   can detect and handle renames Git - the fast version control system

Slide 37

Slide 37 text

Resolving conflicts.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … Suppose Jeff and Dan both made changes to the same line in file… CONFLICT (content): Merge conflict in file Automatic merge failed; fix conflicts and then commit the result. Uh oh…. now what? Git - the fast version control system

Slide 38

Slide 38 text

Resolving conflicts.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … Well, just merge manually… # run your favourite file merge application $ git mergetool –t opendiff Git - the fast version control system

Slide 39

Slide 39 text

Git - the fast version control system source: http://gitguru.com

Slide 40

Slide 40 text

Resolving conflicts.. SVN Git $ svn checkout url $ git clone url $ svn update $ git pull $ svn add file $ git add file … … …and commit! # commit to resolve the conflict $ git commit Git - the fast version control system

Slide 41

Slide 41 text

Branching A core concept Git - the fast version control system

Slide 42

Slide 42 text

Creating a branch.. SVN Git $ svn copy url_of_trunk url_of_branch $ svn switch url_of_branch $ git branch name_of_branch $ git checkout name_of_branch Git - the fast version control system

Slide 43

Slide 43 text

Creating a branch.. SVN Git $ svn copy url_of_trunk url_of_branch $ svn switch url_of_branch $ git branch name_of_branch $ git checkout name_of_branch Or create and switch to a branch based on another branch $ git checkout –b new_branch other_branch Git - the fast version control system

Slide 44

Slide 44 text

Some common scenarios… Git - the fast version control system Why would I require branching?

Slide 45

Slide 45 text

Scenario 1 – Interrupted workflow You’re finished with part 1 of a new feature but you can’t continue with part 2 before part 1 is released and tested Git - the fast version control system

Slide 46

Slide 46 text

Scenario 1 – Interrupted workflow • $ git checkout –b part2 Work on part 2 • $ git checkout master • Fix part 1… • $ git checkout part2 • $ git merge master Part 1 is approved • $ git checkout master • $ git merge part2 • $ git branch –d part2 Feature finished You’re finished with part 1 of a new feature but you can’t continue with part 2 before part 1 is released and tested Git - the fast version control system

Slide 47

Slide 47 text

Scenario 2 – Quick fixes While you’re busy implementing some feature suddenly you’re being told to drop everything and fix a newly discovered bug Git - the fast version control system

Slide 48

Slide 48 text

Scenario 2 – Quick fixes • $ git commit –a • $ git checkout –b bugfixbranch SHA1_HASH Fixed bug • $ git commit –a –m “Fixed bug” • $ git push • $ git checkout master Resume work While you’re busy implementing some feature suddenly you’re being told to drop everything and fix a newly discovered bug Git - the fast version control system

Slide 49

Slide 49 text

Git usage overview Just to summarize… Git - the fast version control system

Slide 50

Slide 50 text

Git command sequence Source: http://git.or.cz Git - the fast version control system

Slide 51

Slide 51 text

Tooling Stuck at ‘Ye Olde Terminal’? Not necessarily… Git - the fast version control system

Slide 52

Slide 52 text

Git UI front-ends • Comes with command-line client • Looks quite ugly, but does the job • Acts as a reference Gitk • Comes with command-line client • UI more appealing than gitk • Functionality Git Gui • OS X port of Git Gui • Looks quite nice • Still lacks functionality GitX Git - the fast version control system

Slide 53

Slide 53 text

  OpenInGitGui Git - the fast version control system Finder extension

Slide 54

Slide 54 text

  OpenInGitGui Git - the fast version control system Finder extension   TortoiseGit   Git Extensions Windows Explorer extensions

Slide 55

Slide 55 text

  OpenInGitGui Git - the fast version control system Finder extension   TortoiseGit   Git Extensions Windows Explorer extensions   JGit / EGit Eclipse integration

Slide 56

Slide 56 text

Conclusion Why switch to Git? Git - the fast version control system

Slide 57

Slide 57 text

Reasons to switch to Git  Endless, easy, non-file-system-based, local branches  Enhanced merging strategy  Performance  Advanced features enable better workflow  Stashing temporary work  Collaboration before public commits Git - the fast version control system

Slide 58

Slide 58 text

Closing and Q&A  References  Git: http://git-scm.com/download  Git Docs: http://git-scm.com/ documentation  GitX: http://gitx.frim.nl/  TortoiseGit: http://code.google.com/p/ tortoisegit/  Git Extensions: http://sourceforge.net/ projects/gitextensions/  JGit / EGit: http://www.eclipse.org/ egit/ Git - the fast version control system