A comprehensive list of commonly used Git commands, organized by category.
- Set user name:
git config --global user.name "Your Name" - Set user email:
git config --global user.email "your.email@example.com" - View configuration:
git config --list - Set default editor:
git config --global core.editor "vim"