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
- GitHub for Developers Manual
- Git Cheat Sheets
- Introduction to GitHub Flow
- Authentication Troubleshooting Guide
- git-scm
- GitSchool - Visualizing Git
- LearnGitBranching
- 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!