Basic Knowledge
- Tell Git who you are, used when committing:
git config --global user.name "John Doe"
git config --global user.email "[email protected]"
- Generate an SSH key for use with Git:
ssh-keygen -C "[email protected]"
Articles
- Thanoshan MV. The Beginner’s Guide to Git & GitHub. freecodecamp, 11/2019.
- Good beginner’s article.
- Sanjula Madurapperuma. The Essential Git Handbook. freecodecamp, 4/2019.
- Srebalaji Thirumalai. Automate Repetitive Tasks with Custom Git Commands. gitbetter, 5/2020.
- Shane Hudson. How to Make Life Easier When Using Git. smashingmagazine, 3/2020.
- Andy Favell. The History of Git: The Road to Domination in Software Version Control. welcometothejungle, 2/2020.
- Scott Hanselman. Git Is Case-Sensitive and Your Filesystem May Not Be – Weird Folder Merging on Windows. 6/2019.