- Types of contributions we're looking for
- Ground rules & expectations
- How to contribute
- Style guide
- Setting up your environment
- Community
- Bug Fixes
- Function and Class Implementations
- Makefile edits
- Implementing Add-On Features
- etc.
Before we get started, here are a few things we expect from you (and that you should expect from others):
- Be kind and thoughtful in your conversations around this project. We all come from different backgrounds and projects, which means we likely have different perspectives on "how open source is done." Try to listen to others rather than convince them that your way is correct.
- Open Source Guides are released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.
- If you open a pull request, please ensure that your contribution passes all tests. If there are test failures, you will need to address them before we can merge your contribution.
- When adding content, please consider if it is widely valuable. Please don't add references or links to things you or your employer have created as others will do so if they appreciate it.
Clone the repository to your local machine
git clone https://github.com/Hunter-Open-Source-Club/hacktoberfest21.cpp.git
To run the current build of the program
make
./main
If you'd like to contribute, start by searching through the issues and pull requests to see whether someone else has raised a similar idea or question.
- To report an error you can't solve yourself
- To discuss a higher level idea (vision, mission, impact)
- To propose a new feature or idea
- To submit trivial fixes
- To start work on a contribution that was asked for
If you don't see your idea listed, and you think it fits into the goals of this guide, open an issue to discuss the details.
- Ensure the bug was not already reported by searching on GitHub under Issues
- Post a new issue with a detailed description of the problem
- Please detail in the issues what the expected behavior is supposed to be, open a new one
- What is the current behavior
- What are some possible solutions
- Steps to reproduce the bug
- Detailed description of the bug
- Possible Implementation of fix
- Open a new GitHub pull request with the patch.
- Ensure the PR description clearly describes the problem and solution.
- Link the issue number to PR if applicable.
- Open a new GitHub pull request with the implementation.
- Ensure the PR description clearly describes the problem and solution.
- Link the issue number to PR if applicable.
- Do not commit/push directly to the master branch. Instead, create a fork and file a pull request.
- When maintaining a branch, merge frequently with the master.
- When maintaining a branch, submit pull requests to the master frequently.
- If you are working on a bigger issue try to split it up into several smaller issues.
- Please do not use "Draft" pull requests, they clutter our world view. Rather, use issues or discussion topics to discuss whatever needs discussing.
- We reserve full and final discretion over whether or not we will merge a pull request. Adhering to these guidelines is not a complete guarantee that your pull request will be merged.