Thank you for considering contributing to Tips and Tricks for Programming using Cpp Contributions of all kinds—code, documentation, fixes, and examples—are welcome.
- Make sure your code compiles and runs successfully
- Keep changes focused on a single topic or improvement
- Follow the existing folder structure and naming conventions
- Add comments or documentation where it improves clarity
- Open the repository on GitHub
- Click the Fork button (top-right)
git clone https://github.com/<YOUR_GITHUB_USERNAME>/Tips-and-Tricks-for-Programming-using-Cpp.git
cd Tips-and-Tricks-for-Programming-using-CppAdd upstream:
git remote add upstream https://github.com/nitishhsinghhh/Tips-and-Tricks-for-Programming-using-Cpp.git
git remote set-url --push upstream DISABLEgit checkout -b my-feature-branch- Follow existing folder structure
- Keep examples simple and readable
- Use Doxygen-style comments where applicable
git commit -m "Add binary search edge case examples"git pull upstream maingit push origin my-feature-branch- Use a clear and descriptive title
- Explain what you changed and why
- Keep pull requests focused on a single improvement
- Link related issues if applicable