This assignment is designed to help you practice the Git and GitHub concepts covered in the session.
You will practice the basic workflow of contributing to a repository using fork, clone, commit, and pull request.
Click the Fork button on the top right of this repository page to create your own copy of the repository under your GitHub account.
Clone the forked repository to your local machine.
git clone https://github.com/<your-username>/<repository-name>.gitMove into the repository folder:
cd <repository-name>Create a new Markdown file with your name.
Example:
your-name.md
Example:
vidisha-dewan.md
Inside the file, add a short description about yourself.
Example structure:
# Your Name
## About Me
Write a short introduction about yourself.
## Interests
- Interest 1
- Interest 2
## Goals
What you want to learn in this bootcamp.Stage your file:
git add your-name.mdCommit the changes:
git commit -m "Add introduction file for <your-name>"git push origin main- Go to your forked repository on GitHub.
- Click Compare & Pull Request.
- Ensure:
- Base repository → original bootcamp repository
- Base branch → main
- Compare branch → your fork's main branch
- Click Create Pull Request.
Before submitting, ensure:
- You forked the repository
- You cloned the fork locally
- You created a Markdown file with your name
- You committed the file
- You pushed the commit to your fork
- You created a Pull Request
Good luck and happy coding!