Efficient Workflow for Reviewing Changes in Git before Pulling from Remote Branch
2023-06-20
- git
- workflow Category: note todo: add links
TLDR: Quick Git Command Reference
To quickly review changes before pulling, use this sequence of commands:
# 1. Fetch latest changes without merging
git fetch origin
# 2. See what's different
git log HEAD..origin/main …
Continue reading