Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.51 KB

File metadata and controls

56 lines (36 loc) · 1.51 KB

Contributing to ProGuin

Thank you for your interest in contributing!

This project values simple, disciplined progress. Contributions don’t need to be big to be valuable—small, focused improvements are encouraged.

This guide is written for first-time open‑source contributors and assumes little or no prior GitHub experience.

1. Fork the repository

Click the Fork button at the top-right of the repository page. This creates your own copy of the project under your GitHub account.

2. Clone your fork

Clone the repository to your local machine: git clone https://github.com/YOUR_USERNAME/REPOSITORY_NAME.git cd REPOSITORY_NAME

3. Create a new branch

Always create a new branch for your change: git checkout -b short-descriptive-branch-name Example: git checkout -b improve-contributing-guide

4. Make your changes

Keep changes small and focused. If you are unsure, it's okey to ask questions in the issue or PR.

5. Commit your work

Write a clear commit message describing what you changed: Example: git add . git commit -m "Improve clarity of contribution guidelines"

6. Push to your fork

   git push origin short-descriptive-branch-name

7. Open a Pull Request (PR)

  1. Go to the original repository
  2. Click New Pull Request
  3. Select your branch
  4. Describe what you changed and why

Need help?

If anything is unclear: Open an issue Ask questions in your PR

Everyone starts somewhere—questions are welcome.

Thanks again for contributing 💙