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 --listView all configuration settings
git initInitialize repository
git add config-test.txtAdd 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