Skip to content

nilaygit-10721/SAP-HACKATHON

 
 

Repository files navigation

Pull Request Guide

Purpose

This guide outlines the steps to create a pull request (PR) in our project. Following this guide ensures a smooth review process and helps maintain the quality of our codebase.

Steps to Create a Pull Request

  1. Fork the Repository

Navigate to the project repository.

Click the Fork button to create a copy of the repository under your GitHub account.

2. Clone the Forked Repository

Clone the forked repository to your local machine:

git clone [https://github.com/your-username/repository-name.git](https://github.com/Panchalparth471/SAP-HACKATHON)

Navigate to the project directory:

cd repository-name

3. Create a New Branch

Create a new branch for your changes:

git checkout -b feature/your-feature-name

4. Make Changes

Implement your changes in the local repository.

Ensure your code adheres to the project's coding standards.

5. Test Your Changes

Run existing tests and write new tests if applicable.

Ensure all tests pass before proceeding.

6. Commit Your Changes

Add your changes to the staging area:

git add .

Commit your changes with a descriptive message:

git commit -m "Add detailed description of the changes made"

7. Push Your Changes

Push your changes to your forked repository:

git push origin feature/your-feature-name

8. Create a Pull Request

Navigate to the original project repository on GitHub.

Click on the Pull Requests tab.

Click the New Pull Request button.

Select the branch you pushed your changes to and compare it with the base branch of the original repository.

Provide a clear and concise title and description for the pull request.

Click the Create Pull Request button.

Pull Request Guidelines

Title

Use a descriptive title that summarizes the changes made.

Description

Provide a detailed description of the changes made.

Mention any related issues using the format Closes #issue-number.

Checklist

Review Process

Once the pull request is created, it will be reviewed by one or more project maintainers.

Address any feedback provided by the reviewers.

PLEASE NEVER USE GIT F PUSH OR FORCE PUSH

About

SAP HACKATHON

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 57.8%
  • Python 41.9%
  • CSS 0.3%