Skip to content

Latest commit

 

History

History
71 lines (45 loc) · 2.47 KB

CONTRIBUTING.md

File metadata and controls

71 lines (45 loc) · 2.47 KB

Contributing

Hey Open-Source Enthusiast! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Issues and PRs

If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them.

We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, Are you a begginer in Open-Source? Look at the links below if you're not sure how to open a PR.

How to Contribute

  • Take a look at the Existing Issues or create your own Issues!
  • Fork the Repo and create a Branch for any Issue that you are working upon.
  • Create a Pull Request which will be promptly reviewed and suggestions would be added to improve it.
  • Add Screenshots to help us know what this is all about.

How to make a Pull Request

1. Fork the repository by clicking fork symbol at the top right corner.

2. Clone the forked repository.

   git clone https://github.com/DeveloperAshish8/CodeChamp-s-Websit.git

3. Navigate to the project directory.

   cd CodeChamp-s-Website

4. Create a new branch:

   git checkout -b <Add your branch name>

5. Make necessary changes and commit those changes:

Add all the changes to the staging area

git add --a

Now commit those changes using the git commit command:

git commit -m "commit message"

6. Push changes to GitHub:

Push your changes using the command git push:

git push origin -u <add-your-branch-name>

replacing <add-your-branch-name> with the name of the branch you created earlier.

7. Submit your changes for review:

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

Now submit the pull request.

Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.

Congrats! You just completed the standard fork -> clone -> edit -> pull request workflow that you'll encounter often as a contributor!