HTML-CSS-JS Skeleton
🚀 DevWrap 2.0 — Repository Setup Guide
Follow these steps carefully to set up your team repository correctly.
- 1️⃣ Fork the Repository Go to the main repository link shared by the organizers Click the Fork button (top-right corner) on GitHub This creates a copy of the repository under your account
- 2️⃣ Rename Your Forked Repository
After forking:
Open your forked repository Go to Settings → Repository Name Rename it using the format: TeamName_ProjectId ✅ Example: CodeWarriors_DW102
- 3️⃣ Add Your Team Members as Contributors Go to Settings → Collaborators Click Add people Enter your teammates’ GitHub usernames Send the invite Teammates must accept the invitation 💡 Tip:
Ensure all team members are added — commits from non-members may not be considered.
- 4️⃣ Clone the Repository to Your Local Machine 🔹 Step 1: Copy Repo URL Go to your forked repo Click Code → HTTPS Copy the URL 🔹 Step 2: Clone using Git
Open terminal / command prompt:
git clone https://github.com/your-username/TeamName_ProjectId.git🔹 Step 3: Move into Project Folder cd TeamName_ProjectId
- 5️⃣ Start Working Locally 🔹 Create a new branch (recommended)
git checkout -b feature/your-feature-name🔹 Make changes, then commit
git add .
git commit -m "Added: feature description"🔹 Push changes to GitHub
git push origin feature/your-feature-name✅ Final Checklist ✔ Repository name follows TeamName_ProjectId ✔ All teammates added as collaborators ✔ Code pushed to GitHub regularly ✔ Proper commit messages used