1 / 16

GIT : A Distributed version control system

By: Eric Binnion and Simbarashe Musarurwa. GIT : A Distributed version control system. Outline. Version Control Centralized Version Control Distributed version Control Tools Mac Tools Windows Tools Command Line Usage Workflows Individual Group or Team. What is Version Control?.

lavey
Download Presentation

GIT : A Distributed version control system

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. By: Eric Binnion and SimbarasheMusarurwa GIT : A Distributed version control system

  2. Outline • Version Control • Centralized Version Control • Distributed version Control • Tools • Mac Tools • Windows Tools • Command Line Usage • Workflows • Individual • Group or Team

  3. What is Version Control? • Records changes to a file or set of files over time so that you can recall specific versions later. • Incremental Changes

  4. Centralized Version Control • Single server contains all versioned files • Clients check out files from the central place, and all changes pushed to server • Has been standard for many years • Disadvantages: • Slow • No redundancy • If server goes down, no local tracking of files

  5. Distributed Version Control • Clients fully mirror the repository • Redundant • All clients have entire history • Easier Collaboration • Multiple workflows • Faster

  6. Which is best? • In most cases, GIT is the better choice. • However, SVN has been around the block and has greater support for automatic deployment, bug tracking, testing, etc.

  7. Workflow

  8. Simple Workflow • Assuming Gitis installed and you are in project directory. • `gitinit` • `git add –A` • `git commit –m ‘message here’` • `git remote add origin remote-url` • `git push origin master` • `git reset –soft HEAD^`

  9. Team Workflow

  10. Tools

  11. Versions (Mac)

  12. Tortoise SVN (Pc)

  13. Github(Pc or Mac)

  14. Tower (Mac)

  15. Or just learn command line…

  16. Bibliography • Git Branchhttp://gitref.org/branching/#branch • GitInithttp://git-scm.com/docs/git-init • Version Controlhttp://git-scm.com/book/en/Getting-Started-About-Version-Control • SVNhttp://svnbook.red-bean.com/en/1.6/svn.intro.whatis.html

More Related