-
December 19-20, 2016
-
Facilitator:
-
Matt Desmond (@beardofedu)
-
Gitter Buddy
-
Cynthia Rich (@crichid)
-
Class URL: https://github.com/githubteacher/dev-dec-19
Please take a moment to complete the class survey at: http://www.surveygizmo.com/s3/3129009/9ac0ef5c9108.
- 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";}