- Class Date: November 1 - 2, 2017
- Facilitator: @hollenberry
If you have a question, or need assistance during class, please create an issue and mention your teacher!.
Please take a moment to complete the class survey at: https://goo.gl/oHZDmA.
- 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";}
- GitHub for Developers Manual
- Git Cheat Sheets
- Introduction to GitHub Flow
- Authentication Troubleshooting Guide
- git-scm
- GitSchool - Visualizing Git
- LearnGitBranching
- GitHub Flow Aliases
After you have completed this course, you are probably wondering where to go from here:
- GitHub's On Demand Training
- Recommended Path for Learning More
- A Curated List of our Favorite Resources
Hello World!!