Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.52 KB

CONTRIBUTING.md

File metadata and controls

44 lines (27 loc) · 1.52 KB

Contributing

Getting Started

  1. Visit the "Issues".
  2. Use the "Labels" filter and select "Good First Issue" to see a list of beginner-friendly tasks.
  3. Choose an issue that interests you, fork the project, and start working on it. Once you solve and test the issue, open a PR and we'll review it.

Guidelines

  1. Fork the Repository: Click on the 'Fork' button in the upper right corner of the repository's GitHub page. This will create a copy of the repository in your GitHub account.

  2. Clone the Repository: Clone your forked repository to your local machine using git clone.

git clone https://github.com/yourusername/Panora.git
cd Panora
  1. Make Changes: Make your desired changes and ensure that your code adheres to our coding standards.

  2. Test Locally: Test your changes locally to ensure they work as expected.

  3. Commit Changes: Commit your changes with a clear and concise commit message.

git commit -m "Add your detailed change here"
  1. Push Changes: Push your changes to your forked repository.
git push origin branch-name
  1. Create a Pull Request: Go to the original Panora repository and create a pull request. Please provide a detailed description of your changes.

  2. Code Review: Your pull request will undergo a code review.

  3. Merge: Once your pull request is approved, it will be merged into the main repository.