GitHub for Developers

  • February 13 - 14, 2017
  • Facilitators:
  • Eric Hollenberry (@hollenberry)
  • Hector Alfaro (@hectorsector)

Chat with Us on Gitter!

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

Playgrounds for practicing branching