-
January 12 - 13, 2017
-
Facilitators:
-
Cynthia Rich (@crichID)
-
Matt Desmond (@beardofedu)
-
February 1-2, 2017
-
Facilitators:
- Matt Desmond (@beardofedu)
- Briana Swift (@brianamarie)
Please take a moment to complete the class survey
- 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";}