Skip to content
yrncollo edited this page Mar 31, 2023 · 2 revisions

Welcome to the cpp-projects wiki!

How to contribute to the project

  1. Fork the project: In the top-right corner of the page, click Fork.
  2. Clone the project which you have just forked to your computer
git clone https://github.com/YOUR_GITHUB_USERNAME/PROJECT_NAME
  1. Make a new branch (You can use issue, patch-number or your username as the branch name)
  git checkout -b <name-of-new-branch>
  1. Code and make your changes to the code

  2. Stage your changes:

git add FILENAMES
  1. Commit:
git commit -m "your message"
  1. Push:
git push origin <name-of-your-branch>
  1. Once done navigate to your forked repo and click Compare & Pull Request button.
    • This button would bring you to a new page and now you can click on a green button Create Pull Request. After creating a Pull Request (PR) the moderators shall go through your code and merge to the main branch of the project.

Happy Coding

Clone this wiki locally