Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 548 Bytes

tasks.md

File metadata and controls

30 lines (23 loc) · 548 Bytes

Tasks for git workshop

Setup

TA: Fork repo

Table: git clone fork

git config --global user.name git config --gloabl user.email

Main

  1. Each person at table takes one file
  2. Makes a change to that file (e.g. add someone)
  3. Run git status to see changes (git status)
  4. Add the file to a commit (git add)
  5. Commit the file with -m (git commit)
  6. Check the log (git log)
  7. Push your change (git push)
  8. Pull if you can't push! (git pull)

Get Advanced

  1. Checkout a new branch
  2. Greg Smells.