/dev-feb-2017

Repository for GitHub for Developers - Feb 21st and 22nd

GitHub for Developers

  • February 21-22, 2017
  • Facilitators:
  • Matt Desmond (@beardofedu) 🎤
  • Cythia Rich (@crichID) 💬

Talk to Us!!

Give Us Feedback

Please take a moment to complete the class survey at: https://goo.gl/48XlDY.

Scripts for Adding Files

  • Bash: for d in {1..6}; do touch file$d.md; git add file$d.md; git commit -m "adding file $d"; done
  • PowerShell: for ($d=1; $d -le 6;$d++) { touch file$d.md; git add file$d.md; git commit -m "adding file$d.md";}

Resources

Two Stage Commit

Playgrounds for practicing branching