Lección 8 de 8
Pull Requests
Un Pull Request (PR) es una solicitud para fusionar tu rama dentro de otra. Se hace en GitHub, no en la terminal. Permite revisar código antes de mezclarlo.
Flujo típico: crear rama → hacer cambios → subir rama → abrir PR → revisar → fusionar.
GIT
# 1. Create and switch to a new branch
git checkout -b fix-header
# 2. Make changes and commit
git add .
git commit -m "Fix header alignment"
# 3. Push the branch to GitHub
git push origin fix-header
# 4. Go to GitHub and open a Pull Request
# 5. After approval, merge on GitHub