Git is crucial for modern development.
# Initialize repository
git init
# Stage and commit
git add .
git commit -m "Initial commit"
# Branching
git branch feature
git checkout feature
# Merge branches
git checkout main
git merge feature
# Push to remote
git push origin main