Thank you for considering contributing to Codes! We welcome contributions from everyone.
Start by forking the repository on GitHub. This will create your own copy of the project under your GitHub account.
Clone the repository to your local machine:
git clone https://github.com/your-username/Codes.git
Create a new branch to work on your feature or fix:
git checkout -b feature/your-feature-name
Make your changes to the code or documentation.
Before committing your changes, ensure they work as expected. Run any tests and make sure they pass.
Use descriptive commit messages. E.g., "Add feature X" or "Fix issue Y":
git add .
git commit -m "Your descriptive commit message"
Push your changes to your forked repository:
git push origin feature/your-feature-name
Create a pull request (PR) to the main
branch of the original repository. Include a clear title and description of your changes.
If you find any issues, please report them in the Issues section.
If you have suggestions or feedback, feel free to open an issue or start a discussion.
Thank you for your contributions!