Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 2 KB

CONTRIBUTING.md

File metadata and controls

53 lines (43 loc) · 2 KB

Contribution Guide (English)

Thank you for your interest in contributing to this project! Your contributions can help make this project better. Here are some guidelines to help you get started.

How to Contribute

  1. Fork this repository:
    • Click the "Fork" button at the top of this repository page.
  2. Clone the forked repository to your local machine.
    git clone https://github.com/username/Proyek-Monitoring-Kelompok-7.git
    
    • Replace username with your GitHub username.
  3. Create a new branch
    • Create a new branch for the feature or fix you want to add.
    cd Proyek-Monitoring-Kelompok-7
    git checkout -b your-branch-name
    
    • Use a descriptive branch name that reflects the feature or fix you are working on.
  4. Make the necessary changes:
    • Add or modify your code.
  5. Commit your changes:
    • Make sure to write a clear and descriptive commit message.
    git add .
    git commit -m "Brief description of the changes you made"
    
  6. Push to your repository:
    • Push your branch to your GitHub repository.
    git push origin your-branch-name
    
  7. Create a Pull Request (PR):
    • Go to the original repository page and create a pull request from your branch.
    • Provide a clear description of what you added or fixed in your pull request.

Coding Guidelines

  • Follow a consistent coding standard: Ensure your code is consistent with the existing code style in this project.
  • Write clear documentation: Add necessary comments and documentation to help others understand your code.
  • Write tests: If possible, add tests for the features or fixes you are adding.

Reporting Issues

If you find any bugs or have suggestions for improvements, please create a new issue on the Issues page.

Communication

If you want to discuss something related to your contribution or the project in general, feel free to reach out to us via Discussions.


Thank you for your contribution!