Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.67 KB

CONTRIBUTING.md

File metadata and controls

46 lines (32 loc) · 1.67 KB

Contributing

Contributing to this project is a great way to get involved in open source! Here's how you can contribute:

Fork the Repository:

Click the "Fork" button at the top right corner of this repository page to create your copy of the project. FORK

Clone the Repository:

CLONE Clone your forked repository to your local machine using the following command:

git clone "url-you-just-copied"

Create a Branch:

Navigate to the project directory and create a new branch for your contribution using:

cd My-Favorite-SuperHero
git switch -c your-new-branch-name

Make Necessary Changes:

Make the desired changes to the project.


Commit Changes:

Commit your changes with a descriptive commit message using: git commit -m "what changes you make"

Push Changes to GitHub:

Push your changes to your forked repository on GitHub using: git push -u origin your-branch-name

Create a Pull Request:

Go to the original repository on GitHub and click on the "New Pull Request" button. Provide a clear description of your changes and submit the pull request.

Review and Merge:

Your pull request will be reviewed by the project maintainers. Once approved, your changes will be merged into the main project.

Congratulations! You've successfully contributed to this project. Thank you for your contribution and for being a part of the open-source community!

Feel free to reach out if you have any questions or need further assistance.