How to contribute to this project:
- Open the GitHub repository page for the project you want to create a pull request for.
- In the upper right hand corner of the page click on the "Fork" button to create a copy of this repository under your account.
- Open the command line/terminal on your computer
- Clone the fork of the project to your computer
$ git clone https://github.com/username/project-name.git- Add a new remote reference to the original project
$ git remote add original https://github.com/username/project-name.git- Open the newly cloned project in your favorite code editor
- Make the changes to the code (in this project that means adding your message to the
MESSAGES.mdfile) - Create a new commit
$ git add -A
$ git commit -m "Your commit message goes here"- Push your changes up to GitHub (to your forked repository)
- Open a pull request from your forked GitHub repository page
- Fill out a title and description
- Submit your pull request and celebrate!