Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 1.51 KB

CONTRIBUTING.md

File metadata and controls

33 lines (19 loc) · 1.51 KB

Contributing

We welcome contributions from the community to improve Naytif and make it even better! Whether you're fixing a bug, adding a feature, or improving documentation, we appreciate your efforts to help us grow.

How to Contribute

  • Fork the Repository: Click on the "Fork" button at the top-right corner of the page to create your copy of the repository.

  • Clone the Repository: Clone the forked repository to your local machine using the following command:

git clone https://github.com/khairatAA/naytif.git

  • Create a Branch: Create a new branch for your changes using a descriptive branch name:

git checkout -b feature-name

  • Make Changes: Make your changes to the codebase. Ensure your changes adhere to the project's coding standards and guidelines.

  • Test Your Changes: Test your changes thoroughly to ensure they work as expected.

  • Commit Your Changes: Once you're happy with your changes, commit them to your branch:

git add .
git commit -m "Your descriptive commit message
  • Push Your Changes: Push your changes to your fork on GitHub: git push origin feature-name

  • Create a Pull Request (PR): Go to the GitHub page of your forked repository and create a new pull request. Provide a clear description of your changes in the PR, including any relevant information for reviewers.

Review and Collaborate: Collaborate with maintainers and reviewers to address any feedback or changes requested. Your PR may undergo code review, testing, and further iterations before being merged.