2 | 3 | 4 | 5 | 6 | 7 | Current Level: 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15
👉 Why We Use Personal Branches: Developing on your own branch keeps the main
branch clean and stable. It prevents accidental changes or conflicts with teammates’ work. Once your updates are ready and reviewed, they can be safely merged into main
.
Each team member will create their assigned HTML file on their personal branch and begin adding basic content for their individual page.
Check That You’re on Your Own Branch
alex-page
).main
, click it and switch to your correct branch before proceeding.Review Your Assigned Page
alex.html
, jordan.html
).Create a New HTML File
alex.html
).Add Starter HTML Content Use this basic template to start your page:
<!DOCTYPE html>
<html>
<head>
<title>Your Name's Page</title>
</head>
<body>
<h1>Your Name</h1>
<p>This is my personal page for our group project.</p>
</body>
</html>
Commit the File
<h1>
and <p>
tag with your informationWhy does each person work on their own branch instead of editing the main branch directly?
👉 Explanation: Developing on your own branch keeps the main branch clean and stable while you work on your part of the project. It prevents accidental changes or conflicts with your teammates’ work. Once your work is ready and reviewed, it can be safely merged into the main branch.