Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 2.63 KB

CONTRIBUTING.md

File metadata and controls

57 lines (31 loc) · 2.63 KB

hacktoberfest 2023

Hacktoberfest Summary

Hacktoberfest is an event on GitHub or GitLab that encourages everyone to participate in open source software development. You are tasked with making 4 or more pull requests during the month of October. If your pull requests are accepted, then you win digital badges. It's a chance to learn more about git, GitHub or GitLab, and in the case of this project, more about web development, JavaScript, HTML, and CSS.

For more info: hacktoberfest.com

Getting Started

  1. Star this repository (See top right of this page. Click the "Star" button.)

    circle around Star button
  2. Fork this repository (See top right of this page. Click the "Fork" button. On the next screen that appears, click the green "Create fork" button in the lower right.)

    circle around Fork button
  3. Open a Terminal, where you can enter command line text. For the next steps, you'll be using this terminal.

  4. Clone the forked repository down to your machine:

    git clone git@github.com:<your-username>/matrix-movies-website-hacktoberfest.git

    Remember to replace <your-username> with your GitHub username.

  5. Go into your local repo directory

    cd matrix-movies-website-hacktoberfest

  6. Create a branch

    git checkout -b <your-branch-name>

    Think of a name for your new branch. Your branch name can be anything, but it's better if it briefly describes the change you are making. Replace <your-branch-name> with the branch name you've chosen.

  7. Edit your changes in a code editor, such as VS Code.

  8. Preview your changes

    git status

  9. Send your changes up to your forked repo at GitHub: Add, commit and push

    git add .
    git commit -m "Your commit message"
    git push -u origin <your-branch-name>
    
  10. Create a new pull request from your forked repo at GitHub. (Click on the green "Compare & pull request" button that is near the top of the page.)

    compare and pull request button
  11. Wait for your PR review and merge approval. I will review it as soon as possible. Thank you for your time and effort in improving this project!

  12. Celebration time! 🎊 Your PR has been approved! You are a genuine open sourcerer! 🧙 You have unlocked the knowledge and power to make changes throughout the open source world. What will be next?