Ans: Version control tool to track changes in your code.
Ans: Cloud platform to store and collaborate on Git repositories.
Configuring Git (First-Time Setup)
Run these commands in Git Bash or Command Prompt:
git config --global user.name "githubUsername"
git config --global user.email "[email protected] that linked to your github account"
Explanation:
user.name → Your name (shows in commit history).user.email → Your GitHub email.