Git Learning Lab

Master Git with interactive exercises

0 pts
0/20

Menu

0 pts
0/20 Exercises Completed

Understanding Git Configuration

0 pts

Set up your Git identity and preferences. Every commit needs to know who made it!

Tasks (0/6)

git config --global user.name 'Your Name'

Set your name for commits

git config --global user.email 'your.email@example.com'

Set your email for commits

git config --list

View all configuration settings

git init

Initialize repository

git add config-test.txt

Add a test file

git commit -m 'Test commit with proper config'

Make a commit with your identity

💡 Hints

  • Use --global flag to set configuration for all repositories
  • Your name and email will appear in every commit
  • Check your config with --list before committing
Git Learning Terminal
$

Git Graph

✨ Interactive visualization
Zoom: 70%
🌟Main
🚀Feature
🔄Merge
🔧Hotfix
�️ Scroll to zoom • 🖐️ Drag to pan • 👆 Hover for details
Live