Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.36 KB

README.md

File metadata and controls

27 lines (20 loc) · 1.36 KB

CircleCI

How to Git - Things to do in Portland

Welcome to one of the repositories we will be using in today's workshop. Our GitBook available as a PDF here: https://www.gitbook.com/book/beardofedu/wtd-things/details

Resources

Class Images

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";}

@beardofedu!