Navigation
1 | 2 | 3 | 4 | Current Level: 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14
Step 5: Clone and Setup π»
π― Objective
Clone the repository to your local machine so you can work on the project files locally.
π Task Requirements
Who: ALL team members
π Step-by-Step Instructions
- Get Repository URL
- Go to your GitHub repository
- Click the green βCodeβ button
- Copy the HTTPS URL (it should look like:
https://github.com/username/repository-name.git)
- Open Terminal/Command Prompt
- Open your terminal (Mac/Linux) or Command Prompt (Windows)
- Navigate to where you want to store the project
- Clone the Repository
git clone [your-repository-url]
- Replace
[your-repository-url] with the URL you copied
- Press Enter to clone the repository
- Navigate to Project Folder
- Replace
[repository-name] with your actual repository name
- Verify Files Are Present
- You should see the HTML files:
index.html, encoding-ascii.html, encoding-emojis.html
β
Success Criteria
π‘ Tips
- Make sure you have Git installed on your computer
- If you get an error, check that the repository URL is correct
- The clone command creates a new folder with your repository name
- You can use
pwd to see your current directory location
π Ready for Next Step?
Once everyone has cloned the repository locally, youβre ready for Step 6: Update ASCII Binary Page.
πΎ Git Workflow Reminder
After completing this step:
- Repository cloned locally (no changes to commit yet)
- In future steps, remember to:
git add . to stage your changes
git commit -m "descriptive message" to commit
git pull before starting new work
git push to upload your changes
- If you encounter conflicts, see the conflicts tutorial