Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Git'n Started with Version Control

Git'n Started with Version Control

Introductory talk about using Git in your everyday workflow, followed by live demo of getting started with Git and Github.

Read the the accompanying demo's notes -https://gist.github.com/melissakeizer/8823418

Melissa Keizer

February 04, 2014
Tweet

Other Decks in Programming

Transcript

  1. A little bit about me I’m Melissa Keizer. Graduated IMD

    in 2013 and now working at Rumble Labs doing design and front-end development. @KeizGoesBoom
  2. • What Git is • The benefits of using Git

    • Some commonly associated terms
  3. • What Git is • The benefits of using Git

    • Some commonly associated terms • What you’ll need
  4. • What Git is • The benefits of using Git

    • Some commonly associated terms • What you’ll need • Practical demo of getting started with Git
  5. Git is version control system. It manages changes to project

    without overwriting any part of that project.
  6. • View a history of your project • Reverse changes

    • Add meaningful descriptions to each change
  7. • View a history of your project • Reverse changes

    • Add meaningful descriptions to each change • Collaborate more easily
  8. Repository Where your projects live, locally or stored in an

    online host like Github or Bitbucket.
  9. Branch Branching is when you diverge from the main line

    of development (master) and continue to do work without messing with that main line.