GitHub for Developers
- Class Date: May 7 - 10, 2019
- Facilitator: @ppremk
Talk to Us!!
If you have a question, or need assistance during class, please create an issue and mention @ppremk.
Give Us Feedback
Please take a moment to complete the class survey at: null.
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";}
Class Resources
ππ Click the dropdown menu below for the class URLs π π
More helpful links including videos, cheat sheets, and visualization tools
#### Git
- [Git Cheat Sheets](https://services.github.com/on-demand/downloads/github-git-cheat-sheet.pdf)
- [git-scm](https://git-scm.com)
- [Git Katas](https://github.com/praqma-training/gitkatas)
- [Git Aliases](https://haacked.com/archive/2014/07/28/github-flow-aliases/)
#### Review materials & visualization
- [Review videos](https://www.youtube.com/playlist?list=PLg7s6cbtAD16Pgp6WIVfX4VsGI-xyWkMz)
- [GitSchool - Visualizing Git](http://git-school.github.io/visualizing-git/)
- [LearnGitBranching](http://learngitbranching.js.org/?NODEMO)
#### GitHub Documentation and Help
- [GitHub Webcasts](https://resources.github.com/webcasts/)
- [Authentication Troubleshooting Guide](https://help.github.com/categories/authenticating-to-github/)
- [GitHub Help Documentation](https://help.github.com/)
- [GitHub Enterprise Documentation](https://help.github.com/enterprise/2.12/)
- [Enterprise Support](https://enterprise.github.com/support)
#### Git and IDEs Webcasts
- [GitHub and Visual Studio](https://resources.github.com/webcasts/GitHub-and-Visual-Studio/)
- [GitHub and IntelliJ IDEs](https://resources.github.com/webcasts/GitHub-and-Intellij-IDEs/)
- [GitHub and Atom.io](https://resources.github.com/webcasts/GitHub-and-Atom/)
- [GitHub and Xcode](https://resources.github.com/webcasts/GitHub-and-Xcode/)
- [GitHub and Eclipse](https://resources.github.com/webcasts/GitHub-and-Eclipse/)
- [GitHub and GitHub Desktop](https://resources.github.com/webcasts/GitHub-and-GitHub-desktop/)
- [GitHub and GitKraken](https://youtu.be/awzPi1XLPnU)
#### Class Images
- [Git Configuration Levels](https://services.github.com/on-demand/images/config-levels.jpg)
- [The Two Stage Commit](https://services.github.com/on-demand/images/two-stage-commit-a.jpg)
- [Reset Modes](https://services.github.com/on-demand/images/reset-modes.jpg)
What's Next?
After you have completed this course, you are probably wondering where to go from here: