Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.04 KB

File metadata and controls

29 lines (23 loc) · 1.04 KB

How to contribute to this project:

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