git branch nguoi_b git branch nguoi_b git branch nguoi_c git branch nguoi_d Chuyển vào từng nhánh chỉnh sửa index.html, commit và push git checkout nguoi_a git commit -m “Code nguoi A push” git push origin -u nguoi_a
git checkout nguoi_b git commit -m “Code nguoi B push” git push origin -u nguoi_b
git checkout nguoi_c git commit -m “Code nguoi C push” git push origin -u nguoi_c
git checkout nguoi_d git commit -m “Code nguoi D push” git push origin -u nguoi_d
Checkout về main và cập nhật code git checkout main git pull
Merge từng nhánh vào main git merge nguoi_a git merge nguoi_b git merge nguoi_c git merge nguoi_d
Khi mẻge từ nhánh thứ 2 trở đi thì bị conflict nên chỉnh sửa lại code và commit commit -m “Merge A” git push