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

Version Control

Version Control

Version control using git as an example presented at ForLoop Owerri!

Joshua Joshua

January 20, 2018
Tweet

More Decks by Joshua Joshua

Other Decks in Technology

Transcript

  1. 3 Meet Joshua Joshua ▪ Developer Evangelist ▪ CTO ForeFront

    Agency INC ▪ Spaghetti Advocate facebook.com/jostly @joshuajsmart Joshuajoshua.me
  2. Table of Contents Intro to Version Control Setting up Git

    Running your Repository Web Apps on Githubs Hosting your Docker Images
  3. • You made a lot of improvements last night... ...but

    you haven't gotten them to work yet • Your program worked well enough yesterday • You need to turn in your program to the Project Owner • Program Error
  4. 18 •You change one part of a program--it works •Your

    co-worker changes another part--it works •You put them together--it doesn’t work •Some change in one part must have broken something in the other part •What were all the changes?
  5. $ pwd * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)

    cd – change directory cd c:/csm_classes – change to a specific path cd .. – change to parent directory.
  6. $ pwd * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)

    ls – list ls - l – list with details
  7. $ pwd * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)

    git config --global user.name “Joshua Joshua” git config --global user.email
  8. $ pwd * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)

    git config --global core.editor notepad++ git config --list (or git config –l) s