Git
Courses
- Learn Git in 30 Minutes - Brief Overview
- Git Complete - Udemy Course
- 10 Useful Git Tips
- Interactive Courses
Setup
Linux
sudo apt-get update
sudo apt-get install git
Windows
- Download Git from official website
- Open GitBash
Config
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
git config --list
# if default branch name is not `main`
# use main as default branch name
git config --global init.defaultBranch main
GitHub Course
- GitHub Ultimate - Udemy Course