- Go to the repository you want to clone.
- Click on the green "Code" button.
- Copy the URL.
- Open your terminal.
- Change the current working directory to the location where you want the cloned directory.
- Type
git clone
, and then paste the URL you copied in step 3. - Press Enter to create your local clone.
- Go to the cloned repository.
- Open your cloned reopository in VS Code.
- Open the terminal in VS Code.
- Type
git pull origin main
to get the latest changes from the repository. - Type
git checkout -b "your-name"
to create a new branch. - Go back to the repository inside VS Code.
- Make a new folder with your name. Add a new file, call it
README.md
, and write your name in it. - Add and commit the changes using the following commands:
git add .
git commit -m "Added my name"
- Push the changes to the repository using the following command:
git push -u origin your-name
- Go to the repository on GitHub.
- Click on the "Pull Request" button.
- Add a title and description to your pull request.
- Click on the "Create Pull Request" button.
- Send your PR in Slack to review.