This repository demonstrates production-grade Git workflows commonly used in Cloud & DevOps teams (rebase, conflict resolution, rollback, recovery).
- Atomic commits via interactive staging (
git add -p) - Rebase + conflict resolution
- Safe rollback on shared history (
git revert) - Recovery using reflog
- Regression debugging using git bisect
- Versioning with tags + changelog
- Use feature branches
- Keep commits atomic
python -m pytest