Practice forking a repo and making a pull request
For this repo by clicking the fork button at the top of the screen.
Clone your fork of the repo to your local machine.
Copy and paste the Git URL in the sidebar.
In the terminal, type git clone
, followed by the git URL you copy and pasted.
git clone git@github.com:YOURGITHUBUSERNAME/fork-me.git
Add a file in the /contributors/ directory named either you_name.md
or your_name.txt
and add something about yourself.
steve_zissou.md
I am an oceanographer, documentarian, and newfound father aboard the ship Belafonte. I am currently at work filming a documentary about the elusive Jaguar Shark. My other intersts include jump suits, track sneakers, and knit caps.
Commit your changes and push them to GitHub.
git add .
git commit -m "adding my name to the contributors"
git push
Back to GitHub.com, visit your fork of the repo (https://github.com/YOURUSERSNAME/fork-me), click the "Pull Request" button.
Now, click the "Create Pull Request" button.
Add a title to your pull request and a brief description of the change and click the "Create Pull Request" button.
That's it! Your changes are now waiting to be added to the codebase.